diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-07-24 15:19:09 +0100 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-07-24 15:19:09 +0100 |
commit | f0acd8d7a7d885f218509ef048004e0897a31573 (patch) | |
tree | f00abcb4ea437531590649d20e2a2cd12694c22d /src/Makefile.housekeeping | |
parent | 3f338b7b80cd9719033a290af14921c552e6c408 (diff) | |
download | ipxe-f0acd8d7a7d885f218509ef048004e0897a31573.tar.gz |
Define -DOBJECT when generating Makefile rules, for consistency.
Inhibit -Werror when generating Makefile rules, to prevent warnings
from killing the dependency list.
Diffstat (limited to 'src/Makefile.housekeeping')
-rw-r--r-- | src/Makefile.housekeeping | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping index ccf4dc11..108cc3ab 100644 --- a/src/Makefile.housekeeping +++ b/src/Makefile.housekeeping @@ -118,8 +118,8 @@ endef # define obj_template - @$(CPP) $(CFLAGS) $(CFLAGS_$(3)) $(CFLAGS_$(4)) \ - -M $(1) -MT "$(4)_DEPS" -MG -MP | \ + @$(CPP) $(CFLAGS) $(CFLAGS_$(3)) $(CFLAGS_$(4)) -DOBJECT=$(4) \ + -Wno-error -M $(1) -MT "$(4)_DEPS" -MG -MP | \ sed 's/_DEPS\s*:/_DEPS =/' >> $(2) @echo -e '\n$$(BIN)/$(4).o : $(1) $$(MAKEDEPS) $$($(4)_DEPS)' \ '\n\t$$(QM)echo " [BUILD] $$@"\n' \ |