Browse Source

Now classes.pp is copied from ../inc

michael 26 years ago
parent
commit
a4253fcee5
2 changed files with 9 additions and 2 deletions
  1. 3 0
      fcl/go32v2/Makefile
  2. 6 2
      fcl/linux/Makefile

+ 3 - 0
fcl/go32v2/Makefile

@@ -80,6 +80,9 @@ $(PROGNAMES): %:%.pp
 
 classes.ppu: classes.pp $(INCFILENAMES) $(PROCFILENAMES)
 
+classes.pp:
+	cp $(INCDIR)/classes.pp .
+
 #
 # Generic install and clean targets
 #

+ 6 - 2
fcl/linux/Makefile

@@ -51,7 +51,7 @@ INCFILENAMES=$(addprefix $(INCDIR)/,$(INCNAMES))
 # If nothing special needs doing, then just fill in the names here.
 # The rest should be automatic.
 UNITNAMES=classes
-PROGNAMES=tests
+PROGNAMES=
 UNITOBJECTS=$(addsuffix .o, $(UNITNAMES))
 UNITFILES=$(addsuffix .ppu, $(UNITNAMES))
 PROGSOURCES=$(addsiffix .pp, $(PROGNAMES))
@@ -80,8 +80,12 @@ progs: $(PROGNAMES)
 $(PROGNAMES): %:%.pp
 	$(PP) $(OPT) $<
 
-classes.ppu: classes.pp $(INCFILENAMES) $(PROCFILENAMES) \
+classes.ppu: classes.pp $(INCFILENAMES) $(PROCFILENAMES)
+	$(PP) $(OPT) $<
 
+classes.pp:
+	cp $(INCDIR)/classes.pp .
+	
 #
 # Generic install and clean targets
 #