Files
fiche/Makefile.in

19 lines
284 B
Makefile

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