diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-02 18:04:03 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-02 18:04:03 +0200 |
commit | 9e5c7e82de14b6f4284169821f6f6a4dd7091319 (patch) | |
tree | 53ef06b17db93e5290321cc9f92bd372c11b63e6 /config.mk | |
parent | Fix tests and libsimple_arraycpy and libsimple_arraymove (diff) | |
download | libsimple-9e5c7e82de14b6f4284169821f6f6a4dd7091319.tar.gz libsimple-9e5c7e82de14b6f4284169821f6f6a4dd7091319.tar.bz2 libsimple-9e5c7e82de14b6f4284169821f6f6a4dd7091319.tar.xz |
Set CC=cc in config.mk
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 4 |
1 files changed, 3 insertions, 1 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 CFLAGS = -std=c11 -Wall -Wextra -O2 $(CPPFLAGS) LDFLAGS = -s |