Files
pandoc-diamond-filter/filters/Makefile
T

17 lines
269 B
Makefile

# Tâche par défaut.
all: diamond
.DEFAULT_GOAL:=all
# Tâches virtuelles.
.PHONY: all diamond clean
# Construction du filtre diamond.
diamond:
$(MAKE) -C ../src ../filters/diamond
# Nettoyage.
clean:
rm -f diamond
# vim: set tw=80 ts=4 sw=4 sts=4 spelllang=fr: