Makefile - fiche - A pastebin adjusted for gopher use
 (HTM) git clone git://vernunftzentrum.de/fiche.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
       Makefile (294B)
       ---
            1 # for debug add -g -O0 to line below
            2 CFLAGS+=-pthread -O2 -Wall -Wextra -Wpedantic -Wstrict-overflow -fno-strict-aliasing -std=gnu11 -g -O0
            3 prefix=/usr/local/bin
            4 
            5 all:
            6         ${CC} main.c fiche.c $(CFLAGS) -o fiche
            7 
            8 install: fiche
            9         install -m 0755 fiche $(prefix)
           10 
           11 clean:
           12         rm -f fiche
           13 
           14 .PHONY: clean