Files
fiche/Makefile

19 lines
287 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
2017-04-15 23:36:22 +02:00
prefix=/usr/local
2013-09-06 04:01:55 +02:00
2015-05-02 22:56:36 +03:00
all: fiche
2013-09-06 04:01:55 +02:00
install: fiche
2017-04-15 23:36:22 +02:00
install -m 0755 fiche $(prefix)/bin
clean:
rm -f fiche
.PHONY: clean