소스 검색

+ INCUNITS added

michael 26 년 전
부모
커밋
9491a2f95c
3개의 변경된 파일24개의 추가작업 그리고 7개의 파일을 삭제
  1. 2 0
      fcl/inc/Makefile.inc
  2. 9 3
      fcl/linux/Makefile
  3. 13 4
      fcl/os2/Makefile

+ 2 - 0
fcl/inc/Makefile.inc

@@ -4,3 +4,5 @@
 INCNAMES=classes.inc classesh.inc bits.inc collect.inc compon.inc filer.inc\
          lists.inc parser.inc persist.inc reader.inc streams.inc strings.inc\
          thread.inc writer.inc
+
+INCUNITS=classes inifiles

+ 9 - 3
fcl/linux/Makefile

@@ -38,7 +38,11 @@ DEFAULTUNITS=1
 # Real targets
 #####################################################################
 
-UNITOBJECTS=classes
+# INCUNITS is defined in makefile.inc
+# They are default units for all platforms.
+include $(INC)/Makefile.inc
+
+UNITOBJECTS=$(INCUNITS)
 EXEOBJECTS=
 
 
@@ -116,14 +120,16 @@ endif
 
 vpath %$(PASEXT) $(INC)
 
-include $(INC)/Makefile.inc
 INCFILES=$(addprefix $(INC)/,$(INCNAMES))
 
 classes$(PPUEXT): $(INCFILES) classes$(PASEXT)
 
 #
 # $Log$
-# Revision 1.7  1999-04-08 10:18:59  peter
+# Revision 1.8  1999-04-08 15:58:44  michael
+# + INCUNITS added
+#
+# Revision 1.7  1999/04/08 10:18:59  peter
 #   * makefile updates
 #
 #

+ 13 - 4
fcl/os2/Makefile

@@ -2,7 +2,7 @@
 #   $Id$
 #   Copyright (c) 1999 by the Free Pascal Development Team
 #
-#   Makefile for Free Component Library for OS/2
+#   Makefile for Free Component Library for Linux
 #
 #   See the file COPYING.FPC, included in this distribution,
 #   for details about the copyright.
@@ -38,7 +38,11 @@ DEFAULTUNITS=1
 # Real targets
 #####################################################################
 
-UNITOBJECTS=classes
+# INCUNITS is defined in makefile.inc
+# They are default units for all platforms.
+include $(INC)/Makefile.inc
+
+UNITOBJECTS=$(INCUNITS)
 EXEOBJECTS=
 
 
@@ -116,14 +120,19 @@ endif
 
 vpath %$(PASEXT) $(INC)
 
-include $(INC)/Makefile.inc
 INCFILES=$(addprefix $(INC)/,$(INCNAMES))
 
 classes$(PPUEXT): $(INCFILES) classes$(PASEXT)
 
 #
 # $Log$
-# Revision 1.4  1999-04-08 10:19:01  peter
+# Revision 1.5  1999-04-08 15:59:54  michael
+# + INCUNITS added
+#
+# Revision 1.8  1999/04/08 15:58:44  michael
+# + INCUNITS added
+#
+# Revision 1.7  1999/04/08 10:18:59  peter
 #   * makefile updates
 #
 #