X-Git-Url: https://git.saurik.com/apple/boot.git/blobdiff_plain/14c7c974991c850bfa0348affbd4bee3223205ee..f083c6c388c9bea8d87e360850329e0c60ce21aa:/i386/libsa/Makefile?ds=sidebyside diff --git a/i386/libsa/Makefile b/i386/libsa/Makefile index eaad0d0..7772a5d 100644 --- a/i386/libsa/Makefile +++ b/i386/libsa/Makefile @@ -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)" @@ -32,9 +33,8 @@ CFILES = prf.c printf.c zalloc.c \ string.c strtol.c error.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