Files
fiche/Makefile
2015-11-17 20:51:14 -08:00

18 lines
279 B
Makefile

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