Changeset 13605
- Timestamp:
- Apr 11, 2010, 10:12:35 AM (10 years ago)
- Location:
- trunk/source/lisp-kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/lisp-kernel/solarisx64/Makefile
r13594 r13605 37 37 # however. 38 38 WFORMAT = -Wno-format 39 PLATFORM_H = platform-solarisx64.h 39 40 40 41 … … 43 44 $(M4) $(M4FLAGS) -I../ $< | $(AS) $(ASFLAGS) -o $@ 44 45 .c.o: 45 $(CC) - I./-c $< $(CDEFINES) $(CDEBUG) $(COPT) $(WFORMAT) -m64 -o $@46 $(CC) -include ../$(PLATFORM_H) -c $< $(CDEFINES) $(CDEBUG) $(COPT) $(WFORMAT) -m64 -o $@ 46 47 47 48 SPOBJ = pad.o x86-spjump64.o x86-spentry64.o x86-subprims64.o … … 59 60 CHEADERS = area.h bits.h x86-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 x86-constants64.h x86-exceptions.h lisptypes.h 62 Threads.h x86-constants64.h x86-exceptions.h lisptypes.h $(PLATFORM_H) 62 63 63 64 -
trunk/source/lisp-kernel/solarisx86/Makefile
r13594 r13605 37 37 # however. 38 38 WFORMAT = -Wno-format 39 39 PLATFORM_H = platform-solarisx86.h 40 40 41 41 … … 43 43 $(M4) $(M4FLAGS) -I../ $< | $(AS) $(ASFLAGS) -o $@ 44 44 .c.o: 45 $(CC) - I./-c $< $(CDEFINES) $(CDEBUG) $(COPT) $(WFORMAT) -m32 -o $@45 $(CC) -include ../$(PLATFORM_H) -c $< $(CDEFINES) $(CDEBUG) $(COPT) $(WFORMAT) -m32 -o $@ 46 46 47 47 SPOBJ = pad.o x86-spjump32.o x86-spentry32.o x86-subprims32.o … … 59 59 CHEADERS = area.h bits.h x86-constants.h lisp-errors.h gc.h lisp.h \ 60 60 lisp-exceptions.h lisp_globals.h macros.h memprotect.h image.h \ 61 Threads.h x86-constants32.h x86-exceptions.h lisptypes.h 61 Threads.h x86-constants32.h x86-exceptions.h lisptypes.h $(PLATFORM_H) 62 62 63 63
Note: See TracChangeset
for help on using the changeset viewer.