Makefile - libgcgi - REST library for Gopher | |
git clone git://bitreich.org/libgcgi/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinw… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
Makefile (264B) | |
--- | |
1 LIBS = -lgcgi #-lseccomp #<- uncomment on Linux | |
2 LDFLAGS = -L.. | |
3 CFLAGS = -I.. -D_POSIX_C_SOURCE=200809L -D_GNU_SOURCE -g -pedantic -std=… | |
4 | |
5 all: index.cgi | |
6 | |
7 clean: | |
8 rm -f index.cgi | |
9 | |
10 index.cgi: index.c | |
11 ${CC} ${LDFLAGS} ${CFLAGS} -o $@ index.c ${LIBS} |