Changeset 13602
- Timestamp:
- Apr 11, 2010, 2:40:50 AM (15 years ago)
- Location:
- trunk/source/lisp-kernel
- Files:
-
- 2 edited
-
linuxppc/Makefile (modified) (3 diffs)
-
linuxppc64/Makefile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/lisp-kernel/linuxppc/Makefile
r13594 r13602 29 29 # however. 30 30 WFORMAT = -Wno-format 31 PLATFORM_H = platform-linuxppc.h 31 32 32 33 # If the linker supports a "--hash-style=" option, use traditional … … 56 57 $(M4) $(M4FLAGS) -I../ $< | $(AS) $(A32) $(ASFLAGS) -o $@ 57 58 .c.o: 58 $(CC) - I./-c $< $(CDEFINES) $(CDEBUG) $(COPT) $(WFORMAT) $(PPC32) -o $@59 $(CC) -include ../$(PLATFORM_H) -c $< $(CDEFINES) $(CDEBUG) $(COPT) $(WFORMAT) $(PPC32) -o $@ 59 60 60 61 SPOBJ = pad.o ppc-spjump.o ppc-spentry.o ppc-subprims.o … … 71 72 CHEADERS = area.h bits.h ppc-constants.h lisp-errors.h gc.h lisp.h \ 72 73 lisp-exceptions.h lisp_globals.h macros.h memprotect.h image.h \ 73 Threads.h ppc-constants32.h ppc-exceptions.h 74 Threads.h ppc-constants32.h ppc-exceptions.h $(PLATFORM_H) 74 75 75 76 # Subprims linked into the kernel ? -
trunk/source/lisp-kernel/linuxppc64/Makefile
r13594 r13602 29 29 # than elsewhere, but most gcc format warnings are still nonsense. 30 30 WFORMAT = -Wno-format 31 PLATFORM_H = platform-linuxppc64.h 31 32 32 33 # If the linker supports a "--hash-style=" option, use traditional … … 44 45 $(M4) $(M4FLAGS) -I../ $< | $(AS) $(ASFLAGS) -o $@ 45 46 .c.o: 46 $(CC) - I./-c $< $(CDEFINES) $(CDEBUG) $(COPT) $(WFORMAT) -m64 -o $@47 $(CC) -include ../$(PLATFORM_H) -c $< $(CDEFINES) $(CDEBUG) $(COPT) $(WFORMAT) -m64 -o $@ 47 48 48 49 SPOBJ = pad.o ppc-spjump.o ppc-spentry.o ppc-subprims.o … … 59 60 CHEADERS = area.h bits.h ppc-constants.h lisp-errors.h gc.h lisp.h \ 60 61 lisp-exceptions.h lisp_globals.h macros.h memprotect.h image.h \ 61 Threads.h ppc-constants64.h ppc-exceptions.h 62 Threads.h ppc-constants64.h ppc-exceptions.h $(PLATFORM_H) 62 63 63 64 # Subprims linked into the kernel ?
Note:
See TracChangeset
for help on using the changeset viewer.
