]> matita.cs.unibo.it Git - helm.git/commitdiff
added support for MATITA_FLAGS and NODB make variables
authorStefano Zacchiroli <zack@upsilon.cc>
Fri, 7 Oct 2005 08:19:43 +0000 (08:19 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Fri, 7 Oct 2005 08:19:43 +0000 (08:19 +0000)
helm/matita/template_makefile.in

index 073efb8f45856bc87798d9a2785f3b203f23875b..6079bb4eb333b7664d3330671af661b3446876c6 100644 (file)
@@ -1,6 +1,12 @@
 SRC=$(shell find @ROOT@ -name "*.ma" -a -type f)
 TODO=$(SRC:%.ma=%.mo)
 
+MATITA_FLAGS=
+NODB=false
+ifeq ($(NODB),true)
+       MATITA_FLAGS += -nodb
+endif
+
 MATITAC=@CC@
 MATITACLEAN=@CLEAN@
 MATITADEP=@DEP@
@@ -8,14 +14,14 @@ MATITADEP=@DEP@
 all: $(TODO)
 
 clean:
-       $(MATITACLEAN) $(SRC)
+       $(MATITACLEAN) $(MATITA_FLAGS) $(SRC)
        rm -f $(TODO)
 
 %.moo:
-       ($(MATITAC) -q -I @ROOT@ $< | (grep -v "^make" || true))
+       ($(MATITAC) $(MATITA_FLAGS) -q -I @ROOT@ $< | (grep -v "^make" || true))
 
 @DEPFILE@ : $(SRC)
-       @DEP@ -I '@ROOT@' $^ > @DEPFILE@
+       $(MATITADEP) $(MATITA_FLAGS) -I '@ROOT@' $^ > @DEPFILE@
 
 # this is the depend for full targets like:
 # dir/dir/name.moo: dir/dir/name.ma dir/dep.moo