Makefile - fiche - A pastebin adjusted for gopher use | |
git clone git://vernunftzentrum.de/fiche.git | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
Makefile (294B) | |
--- | |
1 # for debug add -g -O0 to line below | |
2 CFLAGS+=-pthread -O2 -Wall -Wextra -Wpedantic -Wstrict-overflow -fno-str… | |
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 |