Files
fiche/Makefile
solusipse c054f8dc20 Fixed #50
2017-04-15 23:36:22 +02:00

19 lines
287 B
Makefile

# -----------------------------------
# Fiche MAKEFILE
# https://github.com/solusipse/fiche
# solusipse.net
# -----------------------------------
CFLAGS+=-pthread -O2
prefix=/usr/local
all: fiche
install: fiche
install -m 0755 fiche $(prefix)/bin
clean:
rm -f fiche
.PHONY: clean