URI: 
       Makefile - libgcgi - REST library for Gopher
  HTML git clone git://bitreich.org/libgcgi/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/libgcgi/
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
   DIR 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=c99 -Wall -Wextra
            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}