diff options
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..e53fc72 --- /dev/null +++ b/config.mk @@ -0,0 +1,20 @@ +# your template, must be a single .c file with the extension omitted +TEMPLATE = templates/simple + +PREFIX = /usr/local +WEB_PATH = /share/sternenblog +MAN_PATH = /share/man +DOC_PATH = /share/doc/sternenblog + +INSTALL = install +RM = rm +CP = cp + +# convert from imagemagick +CONVERT = convert + +CC = gcc +CFLAGS = -Wall -pedantic --std=c99 -Os + +# debugging +# CFLAGS = -Wall -pedantic --std=c99 -ggdb -Og |