summaryrefslogtreecommitdiffstats
path: root/src/Makefile.housekeeping
diff options
context:
space:
mode:
authorMichael Brown2005-04-18 16:16:13 +0200
committerMichael Brown2005-04-18 16:16:13 +0200
commit5abc43a320a70c7d6a923d45e1d95a02ff39ac7d (patch)
tree2f675223a51269597d8006ee76b4bb081d3d01cf /src/Makefile.housekeeping
parent"make xxx DEBUG=yyy,zzz" now working, but the "up to date" message is (diff)
downloadipxe-5abc43a320a70c7d6a923d45e1d95a02ff39ac7d.tar.gz
ipxe-5abc43a320a70c7d6a923d45e1d95a02ff39ac7d.tar.xz
ipxe-5abc43a320a70c7d6a923d45e1d95a02ff39ac7d.zip
"make bin/xxx DEBUG=yyy,zzz" now works seemingly perfectly. :)
Diffstat (limited to 'src/Makefile.housekeeping')
-rw-r--r--src/Makefile.housekeeping9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping
index 9c8f28bd..70c716a0 100644
--- a/src/Makefile.housekeeping
+++ b/src/Makefile.housekeeping
@@ -258,10 +258,11 @@ $(BIN)/%.info :
# changes.
#
BLIB_LIST = $(BIN)/.blib.list
-.PHONY : always_check_blib_list
-$(BLIB_LIST) : always_check_blib_list
- @[ "$(shell cat $@)" = "$(BLIB_OBJS)" ] || echo "$(BLIB_OBJS)" > $@
-.SECONDARY : $(BLIB_LIST)
+ifneq ($(shell cat $(BLIB_LIST)),$(BLIB_OBJS))
+$(shell echo "$(BLIB_OBJS)" > $(BLIB_LIST))
+endif
+
+$(BLIB_LIST) :
# Library of all objects
#