Browse Source

+ Corrected setting of INCFILENAMES

michael 27 years ago
parent
commit
749db24913
4 changed files with 4 additions and 4 deletions
  1. 1 1
      fcl/dos/go32v2/Makefile
  2. 1 1
      fcl/linux/Makefile
  3. 1 1
      fcl/os2/Makefile
  4. 1 1
      fcl/win32/Makefile

+ 1 - 1
fcl/dos/go32v2/Makefile

@@ -44,7 +44,7 @@ CPUDIR=../$(CPU)
 include $(INCDIR)/Makefile.inc
 
 # Set inc
-$(addprefix $(INCDIR),$(INCFILENAMES))
+INCFILENAMES=$(addprefix $(INCDIR)/,$(INCNAMES))
 
 # If nothing special needs doing, then just fill in the names here.
 # The rest should be automatic.

+ 1 - 1
fcl/linux/Makefile

@@ -44,7 +44,7 @@ CPUDIR=../$(CPU)
 include $(INCDIR)/Makefile.inc
 
 # Set inc
-$(addprefix $(INCDIR),$(INCFILENAMES))
+INCFILENAMES=$(addprefix $(INCDIR)/,$(INCNAMES))
 
 # If nothing special needs doing, then just fill in the names here.
 # The rest should be automatic.

+ 1 - 1
fcl/os2/Makefile

@@ -44,7 +44,7 @@ CPUDIR=../$(CPU)
 include $(INCDIR)/Makefile.inc
 
 # Set inc
-$(addprefix $(INCDIR),$(INCFILENAMES))
+INCFILENAMES=$(addprefix $(INCDIR)/,$(INCNAMES))
 
 # If nothing special needs doing, then just fill in the names here.
 # The rest should be automatic.

+ 1 - 1
fcl/win32/Makefile

@@ -44,7 +44,7 @@ CPUDIR=../$(CPU)
 include $(INCDIR)/Makefile.inc
 
 # Set inc
-$(addprefix $(INCDIR),$(INCFILENAMES))
+INCFILENAMES=$(addprefix $(INCDIR)/,$(INCNAMES))
 
 # If nothing special needs doing, then just fill in the names here.
 # The rest should be automatic.