Initialisation du dépôt.

This commit is contained in:
Alexis Lahouze
2026-02-07 10:57:11 +01:00
commit b4663bff44
12 changed files with 649 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# 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: