Changeset 2011
- Timestamp:
- Jun 12, 2005, 7:20:44 AM (20 years ago)
- Location:
- trunk/src/emx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/emx/Makefile.gmk ¶
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r2010 r2011 262 262 FECHO = echo "$(call ECHOIZE,$2,$3,$4,$5,$6,$7,$8,$9)" >> "$1" 263 263 # How to replace the source file extension with a .o extension 264 OBJEXT = $(patsubst %. s,%.o,$(patsubst %.asm,%.o,$(patsubst %.c,%.o,$1)))264 OBJEXT = $(patsubst %.S,%.o,$(patsubst %.s,%.o,$(patsubst %.asm,%.o,$(patsubst %.c,%.o,$1)))) 265 265 # Compute object file path given source file path (except the $. prefix) 266 266 OBJFILE = $(addprefix $(.TKIND.DIR),$(call OBJEXT,$1)) … … 286 286 cleandepend dep depend depdone 287 287 .SUFFIXES: 288 .SUFFIXES: .c .cpp .asm .s . o .exe .dll .a .lib .obj288 .SUFFIXES: .c .cpp .asm .s .S .o .exe .dll .a .lib .obj 289 289 290 290 # Default target -
Property cvs2svn:cvs-rev
changed from
-
TabularUnified trunk/src/emx/common.smak ¶
-
Property cvs2svn:cvs-rev
changed from
1.11
to1.12
r2010 r2011 95 95 96 96 # Generate compilation rules for S files 97 $(foreach x,$(filter %.s ,$(.TSRC)), $(eval $(call def_compile_S,$(x))))97 $(foreach x,$(filter %.s %.S,$(.TSRC)), $(eval $(call def_compile_S,$(x)))) 98 98 99 99 # Generate compilation rules for asm files -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.