mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
We don't need to add rules for implicit .c -> .o conversions. Also add -O2 to the CFLAGS as gcc doesn't print many warnings unless at least some level of optimization is used. Signed-off-by: Dan McGee <dan@archlinux.org> Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
6 lines
126 B
Makefile
6 lines
126 B
Makefile
PREFIX = /usr/local
|
|
|
|
CFLAGS = -g -O2 -std=c99 -pedantic -Wall -I/usr/include/mysql
|
|
LDFLAGS = -g -lalpm -lmysqlclient
|
|
|
|
CC = cc
|