]> git.saurik.com Git - apple/xnu.git/blobdiff - libsa/conf/Makefile.template
xnu-2422.1.72.tar.gz
[apple/xnu.git] / libsa / conf / Makefile.template
index a8d3252d6f03f06a5a8617068832127b9e57036f..88f2eb5a3514cb4d754084842f008b96ee560215 100644 (file)
@@ -5,17 +5,6 @@
 # the terms and conditions for use and redistribution.
 #
 
 # the terms and conditions for use and redistribution.
 #
 
-#
-# Export IDENT for sub-makefiles
-#
-export IDENT
-
-#
-# XXX: INCFLAGS 
-#
-INCFLAGS_MAKEFILE=
-
-
 export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd
 export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def
 export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
 export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd
 export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def
 export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
@@ -25,12 +14,9 @@ include $(MakeInc_cmd)
 include $(MakeInc_def)
 
 #
 include $(MakeInc_def)
 
 #
-# XXX: CFLAGS
+# CFLAGS
 #
 #
-CFLAGS+= -DKERNEL -DLIBSA_KERNEL_PRIVATE \
-         -Wall -Wno-four-char-constants -fno-common
-
-SFLAGS+= -DKERNEL
+CFLAGS+= -include meta_features.h -DLIBSA_KERNEL_PRIVATE
 
 #
 # Directories for mig generated files
 
 #
 # Directories for mig generated files
@@ -43,14 +29,6 @@ COMP_SUBDIRS =
 #
 .PRECIOUS: Makefile
 
 #
 .PRECIOUS: Makefile
 
-VERSION_FILES= \
-       $(SOURCE_DIR)/$(COMPONENT)/conf/version.major   \
-       $(SOURCE_DIR)/$(COMPONENT)/conf/version.minor   \
-       $(SOURCE_DIR)/$(COMPONENT)/conf/version.variant 
-
-COPYRIGHT_FILES = \
-       $(SOURCE_DIR)/$(COMPONENT)/conf/copyright
-
 #
 #  Theses macros are filled in by the config program depending on the
 #  current configuration.  The MACHDEP macro is replaced by the
 #
 #  Theses macros are filled in by the config program depending on the
 #  current configuration.  The MACHDEP macro is replaced by the
@@ -63,13 +41,8 @@ COPYRIGHT_FILES = \
 
 %CFILES
 
 
 %CFILES
 
-%MFILES
-
 %SFILES
 
 %SFILES
 
-%BFILES
-
-%ORDERED
 %MACHDEP
 
 #
 %MACHDEP
 
 #
@@ -79,31 +52,24 @@ COPYRIGHT_FILES = \
 #
 ${OBJS}: ${OBJSDEPS}
 
 #
 ${OBJS}: ${OBJSDEPS}
 
-
-%LOAD
-
 LDOBJS = $(OBJS)
 
 LDOBJS = $(OBJS)
 
-$(COMPONENT).o: $(LDOBJS)
-       @echo "creating $(COMPONENT).o"
-       $(RM) $(RMFLAGS) vers.c
-       $(COMPOBJROOT)/newvers \
-       `$(CAT) ${VERSION_FILES}` ${COPYRIGHT_FILES}
-       ${KCC} $(CFLAGS) $(INCLUDES) -c vers.c
-       @echo [ updating $(COMPONENT).o ${LIBSA_KERNEL_CONFIG} ]
-       $(LD)  $(LDFLAGS_COMPONENT) -o $(COMPONENT).o ${LDOBJS} vers.o /usr/local/lib/libkld.a
-       $(SEG_HACK) __KLD $(COMPONENT).o -o $(COMPONENT)_kld.o
-       mv $(COMPONENT)_kld.o $(COMPONENT).o
+$(COMPONENT).filelist: $(LDOBJS)
+       $(_v)for kld_file in ${LDOBJS}; do      \
+               $(SEG_HACK) -n __KLD -o $${kld_file}__ $${kld_file} ; \
+               mv $${kld_file}__ $${kld_file} ; \
+       done
+       @echo LDFILELIST $(COMPONENT)
+       $(_v)( for obj in ${LDOBJS}; do \
+                echo $(TARGET)/$(CURRENT_KERNEL_CONFIG)/$${obj}; \
+       done; ) > $(COMPONENT).filelist
 
 
-do_all: $(COMPONENT).o
 
 
-do_depend: do_all
-       ${MD} -u Makedep -f -d `ls *.d`
-       
-do_build_all: do_depend 
+do_all: $(COMPONENT).filelist
+
+do_build_all:: do_all
 
 %RULES
 
 include $(MakeInc_rule)
 include $(MakeInc_dir)
 
 %RULES
 
 include $(MakeInc_rule)
 include $(MakeInc_dir)
-