Files
fiche/Makefile

19 lines
305 B
Makefile
Raw Normal View History

2013-09-06 04:01:55 +02:00
# -----------------------------------
# Fiche MAKEFILE
# https://github.com/solusipse/fiche
# solusipse.net
# -----------------------------------
CFLAGS+=-pthread -O2
2013-09-06 04:01:55 +02:00
all: fiche.c
$(CC) -o fiche $(CFLAGS) fiche.c
install: fiche
install -m 0755 fiche ${PREFIX}/bin
clean:
rm -f fiche
.PHONY: clean