Introduction
Introduction Statistics Contact Development Disclaimer Help
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
You are viewing proxied material from vernunftzentrum.de. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.