diff options
author | Mattias Andrée <maandree@kth.se> | 2017-06-06 14:08:07 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2017-06-06 14:08:07 +0200 |
commit | c87ef93e800862f42458a9b987397e9f4d46f49c (patch) | |
tree | cdad3b0b5f712e04c041d667de8bc9698d5852f7 /config.mk | |
parent | Remove a much of stuff, change license, and add support for float and long double (diff) | |
download | libcolour-c87ef93e800862f42458a9b987397e9f4d46f49c.tar.gz libcolour-c87ef93e800862f42458a9b987397e9f4d46f49c.tar.bz2 libcolour-c87ef93e800862f42458a9b987397e9f4d46f49c.tar.xz |
Makefile: add install and uninstall
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,6 +1,9 @@ VERSION_MAJOR = 2 VERSION_MINOR = 0 -CFLAGS = -Wall -pedantic -std=c11 -g +PREFIX = /usr/local +MANPREFIX = $(PREFIX)/share/man + +CFLAGS = -std=c11 -Wall -pedantic -O2 CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -LDFLAGS = -lm +LDFLAGS = -lm -s |