Changed so that the installation process will continue if LLgen
authorceriel <none@none>
Thu, 6 Dec 1984 10:39:28 +0000 (10:39 +0000)
committerceriel <none@none>
Thu, 6 Dec 1984 10:39:28 +0000 (10:39 +0000)
is not present yet.
Also added Makefile to the "make pr" entry.

util/LLgen/src/Makefile

index d088de8..5e5f7ad 100644 (file)
@@ -1,6 +1,6 @@
 # $Header$
 PROF=
-LLOPT=-vvv -x
+LLOPT= # -vvv -x
 CFLAGS=$(PROF) -O -DNDEBUG # -R
 LDFLAGS=-i
 OBJECTS = main.o gencode.o compute.o LLgen.o tokens.o check.o reach.o global.o name.o sets.o Lpars.o alloc.o machdep.o
@@ -14,7 +14,8 @@ all:
                @make LLgen "LDFLAGS=$(LDFLAGS)" "CC=$(CC)" "PROF=$(PROF)" "CFLAGS=$(CFLAGS)"
 
 parser:                $(GFILES)
-               LLgen $(LLOPT) $(GFILES)
+               -LLgen $(LLOPT) $(GFILES)
+# must continue when installing LLgen
                @touch parser
 
 LLgen:         $(OBJECTS)
@@ -22,7 +23,7 @@ LLgen:                $(OBJECTS)
                @size LLgen
 
 pr : 
-               @pr $(FILES) ../lib/rec ../lib/incl
+               @pr $(FILES) ../lib/rec ../lib/incl Makefile
 
 lint: 
                $(LINT) $(CFILES)