]> git.saurik.com Git - apple/boot.git/blobdiff - i386/libsa/Makefile
boot-111.tar.gz
[apple/boot.git] / i386 / libsa / Makefile
index fbf2c0f45587cfd18b1357cc6223e708c83893bb..7772a5d02de9303824ca7fb7842b5f02f5bbd0e7 100644 (file)
@@ -7,8 +7,9 @@ INSTALL_SA_DIR = $(DSTROOT)/System/Library/Frameworks/System.framework/Versions/
 INSTALL_MD_DIR = $(DSTROOT)/System/Library/Frameworks/System.framework/Versions/B/PrivateHeaders/machdep/i386
 
 OPTIM = -Os
-CFLAGS = $(RC_CFLAGS) $(OPTIM) $(MORECPP) -arch i386 -g -Wmost -Wno-precomp \
-       -munaligned-text -static -traditional-cpp
+CFLAGS = $(RC_CFLAGS) $(OPTIM) $(MORECPP) -arch i386 -g -Wmost -Werror \
+             -fno-builtin -static -fomit-frame-pointer \
+             -mpreferred-stack-boundary=2 -fno-align-functions
 
 INC = -I. -I$(SYMROOT) -I$(UTILDIR)
 ifneq "" "$(wildcard /bin/mkdirs)"
@@ -25,16 +26,15 @@ VPATH = $(OBJROOT):$(SYMROOT)
 
 SA_OBJS = prf.o printf.o zalloc.o \
        string.o strtol.o error.o \
-       setjmp.o qsort.o bswap.o
+       setjmp.o qsort.o
 
 SFILES = setjmp.s
 CFILES = prf.c printf.c zalloc.c \
        string.c strtol.c error.c \
-       qsort.c bswap.c
+       qsort.c
 HFILES = memory.h
-EXPORTED_HFILES = libsa.h kernBootStruct.h memory.h
+EXPORTED_HFILES = libsa.h memory.h
 INSTALLED_SA_HFILES = libsa.h
-INSTALLED_MD_HFILES = kernBootStruct.h
 OTHERFILES = Makefile
 ALLSRC =  $(SFILES) $(CFILES) $(HFILES) $(OTHERFILES)
 LIBS = libsa.a
@@ -55,7 +55,6 @@ $(INSTALL_SA_DIR) $(INSTALL_MD_DIR):
 
 installhdrs:: $(INSTALL_SA_DIR) $(INSTALL_MD_DIR)
        cp $(INSTALLED_SA_HFILES) $(INSTALL_SA_DIR)
-       cp $(INSTALLED_MD_HFILES) $(INSTALL_MD_DIR)
 
 include ../MakeInc.dir