Commit d391bdac authored by Peter Eisentraut's avatar Peter Eisentraut

Need more dependencies to get the build order right when objfiles.txt

doesn't exist yet.
parent 3690019d
# #
# Common make rules for backend # Common make rules for backend
# #
# $PostgreSQL: pgsql/src/backend/common.mk,v 1.3 2008/02/26 07:20:38 petere Exp $ # $PostgreSQL: pgsql/src/backend/common.mk,v 1.4 2008/02/26 08:23:31 petere Exp $
# #
# When including this file, set OBJS to the object files created in # When including this file, set OBJS to the object files created in
...@@ -26,7 +26,7 @@ endif ...@@ -26,7 +26,7 @@ endif
SUBSYS.o: $(SUBDIROBJS) $(OBJS) SUBSYS.o: $(SUBDIROBJS) $(OBJS)
$(LD) $(LDREL) $(LDOUT) $@ $^ $(LD) $(LDREL) $(LDOUT) $@ $^
objfiles.txt:: $(MAKEFILE_LIST) objfiles.txt:: $(MAKEFILE_LIST) | $(SUBDIROBJS) $(OBJS)
( $(if $(SUBDIROBJS),cat $(SUBDIROBJS); )echo $(addprefix $(subdir)/,$(OBJS)) ) >$@ ( $(if $(SUBDIROBJS),cat $(SUBDIROBJS); )echo $(addprefix $(subdir)/,$(OBJS)) ) >$@
objfiles.txt:: $(SUBDIROBJS) $(OBJS) objfiles.txt:: $(SUBDIROBJS) $(OBJS)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment