diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2019-10-05 23:04:09 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2019-10-05 23:04:09 +0200 |
commit | 0326a6b837a7e5bb490360a7cdb0225947cee166 (patch) | |
tree | b1a31fa4bd9df655d845dd86af22b6d829b1a643 /config.mk | |
parent | 197e2bff313d8c4b8e7086b0166371afffc0ccc7 (diff) |
Makefile: simplify, remove config.mk
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/config.mk b/config.mk deleted file mode 100644 index da98920..0000000 --- a/config.mk +++ /dev/null @@ -1,29 +0,0 @@ -# customize below to fit your system - -# paths -PREFIX = /usr/local -MANPREFIX = ${PREFIX}/man -DOCPREFIX = ${PREFIX}/share/doc/sfeed - -# compiler and linker -CC = cc -AR = ar -RANLIB = ranlib - -# use system flags. -SFEED_CFLAGS = ${CFLAGS} -SFEED_LDFLAGS = ${LDFLAGS} -SFEED_CPPFLAGS = -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_BSD_SOURCE - -# debug -#SFEED_CFLAGS = -fstack-protector-all -O0 -g -std=c99 -Wall -Wextra -pedantic \ -# -Wno-unused-parameter -#SFEED_LDFLAGS = - -# optimized -#SFEED_CFLAGS = -O2 -std=c99 -#SFEED_LDFLAGS = -s - -# optimized static -#SFEED_CFLAGS = -static -O2 -std=c99 -#SFEED_LDFLAGS = -static -s |