diff options
author | Mattias Andrée <maandree@kth.se> | 2021-09-16 18:49:42 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-09-16 18:49:42 +0200 |
commit | 195bfa0749997706198dc36e38614eb2693c17d9 (patch) | |
tree | 57af493b58900810fdee9378de8e92ac5b8b4629 /config.mk | |
parent | Use simple make file, remove info manual, and other crap, change style, use arg.h instead of getopt, and change license (diff) | |
download | unstickpixels-3.0.1.tar.gz unstickpixels-3.0.1.tar.bz2 unstickpixels-3.0.1.tar.xz |
Improve makefile + m style fix + fix warnings3.0.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/local +PREFIX = /usr MANPREFIX = $(PREFIX)/share/man +CC = cc + CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -CFLAGS = -std=c99 -Wall -Wextra -O2 $(CPPFLAGS) +CFLAGS = -std=c99 -Wall -O2 LDFLAGS = -s -lgamma |