diff options
author | Mattias Andrée <maandree@kth.se> | 2021-09-16 17:58:59 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-09-16 17:58:59 +0200 |
commit | a79fb47fd9ac05d21b6a930c79dd53ed39ad0c76 (patch) | |
tree | 7aad0f981d814988169244c9d6a2ccc871db8e65 /config.mk | |
parent | m (diff) | |
download | libclut-7f80b30a6224536449399bf55975d843cdf86d6c.tar.gz libclut-7f80b30a6224536449399bf55975d843cdf86d6c.tar.bz2 libclut-7f80b30a6224536449399bf55975d843cdf86d6c.tar.xz |
Fix makefile, fix warnings, fix bugs, and otherwise improve code1.2.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,8 @@ -PREFIX = /usr +PREFIX = /usr MANPREFIX = $(PREFIX)/share/man +CC = cc + CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_GNU_SOURCE -CFLAGS = -std=c99 -Wall +CFLAGS = -std=c99 -Wall -O2 LDFLAGS = -lm -s |