Changeset 13600
- Timestamp:
- Apr 11, 2010, 2:26:27 AM (15 years ago)
- Location:
- trunk/source/lisp-kernel
- Files:
-
- 2 edited
-
darwinx8632/Makefile (modified) (2 diffs)
-
darwinx8664/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/lisp-kernel/darwinx8632/Makefile
r13594 r13600 32 32 WFORMAT = -Wno-format 33 33 CC=gcc-4.0 34 PLATFORM_H = platform-darwinx8632.h 34 35 35 36 .s.o: 36 37 $(M4) $(M4FLAGS) -I../ $< | $(AS) $(ASFLAGS) -o $@ 37 38 .c.o: 38 $(CC) - I./-c -arch i386 $< $(CDEFINES) $(CDEBUG) $(COPT) $(MDYNAMIC_NO_PIC) $(WFORMAT) -mmacosx-version-min=10.5 -isysroot /Developer/SDKs/MacOSX10.5.sdk -o $@39 $(CC) -include ../$(PLATFORM_H) -c -arch i386 $< $(CDEFINES) $(CDEBUG) $(COPT) $(MDYNAMIC_NO_PIC) $(WFORMAT) -mmacosx-version-min=10.5 -isysroot /Developer/SDKs/MacOSX10.5.sdk -o $@ 39 40 40 41 SPOBJ = x86-spjump32.o x86-spentry32.o x86-subprims32.o … … 52 53 CHEADERS = area.h bits.h x86-constants.h lisp-errors.h gc.h lisp.h \ 53 54 lisp-exceptions.h lisp_globals.h macros.h memprotect.h image.h \ 54 Threads.h lisptypes.h x86-constants32.h x86-exceptions.h 55 Threads.h lisptypes.h x86-constants32.h x86-exceptions.h $(PLATFORM_H) 55 56 56 57 # Subprims linked into the kernel ? -
trunk/source/lisp-kernel/darwinx8664/Makefile
r13594 r13600 55 55 # however. 56 56 WFORMAT = -Wno-format 57 PLATFORM_H = platform-darwinx8664.h 57 58 58 59 .s.o: 59 60 $(M4) $(M4FLAGS) -I../ $< | $(AS) $(ASFLAGS) -o $@ 60 61 .c.o: 61 $(CC) - I./-c $< -arch x86_64 $(CDEFINES) $(CDEBUG) $(COPT) $(WFORMAT) $(MDYNAMIC_NO_PIC) -mmacosx-version-min=10.5 -isysroot /Developer/SDKs/MacOSX10.5.sdk -o $@62 $(CC) -include ../$(PLATFORM_H) -c $< -arch x86_64 $(CDEFINES) $(CDEBUG) $(COPT) $(WFORMAT) $(MDYNAMIC_NO_PIC) -mmacosx-version-min=10.5 -isysroot /Developer/SDKs/MacOSX10.5.sdk -o $@ 62 63 63 64 SPOBJ = x86-spjump64.o x86-spentry64.o x86-subprims64.o … … 75 76 CHEADERS = area.h bits.h x86-constants.h lisp-errors.h gc.h lisp.h \ 76 77 lisp-exceptions.h lisp_globals.h macros.h memprotect.h image.h \ 77 Threads.h lisptypes.h x86-constants64.h x86-exceptions.h 78 Threads.h lisptypes.h x86-constants64.h x86-exceptions.h $(PLATFORM_H) 78 79 79 80 # Subprims linked into the kernel ?
Note:
See TracChangeset
for help on using the changeset viewer.
