Files
pandoc-diamond-filter/src/Makefile
T

20 lines
316 B
Makefile

# Tâche par défaut.
all: $(FILTERS_DIR)/diamond
.DEFAULT_GOAL:=all
# Tâches virtuelles.
.PHONY: lean all
# Construction du filtre diamond.
SRC_FILES=$(wildcard *.hs)
../filters/diamond: diamond.hs $(SRC_FILES)
ghc -o $@ $<
# Nettoyage.
clean:
rm -f *.hi *.o
# vim: set tw=80 ts=4 sw=4 sts=4 spelllang=fr: