Changeset 1912 in vbox for trunk/src/VBox/Devices/PC/Etherboot-src
- Timestamp:
- Apr 4, 2007 8:25:13 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20162
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/Etherboot-src/Makefile.kmk
r1846 r1912 198 198 # General rules for compiling/assembling source files. 199 199 $(PATH_TARGET)/%.o: core/%.c $(MAKEDEPS) 200 $(call MSG_ L1,Compiling $<,=> $@)200 $(call MSG_COMPILE,$@,$<,$@,CC) 201 201 $(QUIET)$(EB_CC) $(EB_CFLAGS) -o $@ -c $< 202 202 203 203 $(PATH_TARGET)/%.o: drivers/net/%.c $(MAKEDEPS) 204 $(call MSG_ L1,Compiling $<,=> $@)204 $(call MSG_COMPILE,$@,$<,$@,CC) 205 205 $(QUIET)$(EB_CC) $(EB_CFLAGS) -o $@ -c $< 206 206 207 207 $(PATH_TARGET)/%.o: arch/$(ARCH)/core/%.c $(MAKEDEPS) 208 $(call MSG_ L1,Compiling $<,=> $@)208 $(call MSG_COMPILE,$@,$<,$@,CC) 209 209 $(QUIET)$(EB_CC) $(EB_CFLAGS) -o $@ -c $< 210 210 … … 227 227 # General rules for generating runtime (rt) files. 228 228 $(PATH_TARGET)/%.rt.o: $(PATH_TARGET)/%.o $(START) $(PATH_TARGET)/config.o $(BLIB) $(MAKEDEPS) 229 $(call MSG_LINK,$@,$@) 229 230 $(call MSG_L1,Linking $@) 230 231 $(QUIET)$(EB_LD) $(EB_LDFLAGS) -r $(START) $(PATH_TARGET)/config.o $< $(BLIB) -o $@
Note:
See TracChangeset
for help on using the changeset viewer.