mirror of
https://github.com/postgres/postgres.git
synced 2026-06-10 01:00:11 -04:00
Need more dependencies to get the build order right when objfiles.txt
doesn't exist yet.
This commit is contained in:
parent
3690019da8
commit
d391bdac50
1 changed files with 2 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
#
|
||||
# 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
|
||||
|
|
@ -26,7 +26,7 @@ endif
|
|||
SUBSYS.o: $(SUBDIROBJS) $(OBJS)
|
||||
$(LD) $(LDREL) $(LDOUT) $@ $^
|
||||
|
||||
objfiles.txt:: $(MAKEFILE_LIST)
|
||||
objfiles.txt:: $(MAKEFILE_LIST) | $(SUBDIROBJS) $(OBJS)
|
||||
( $(if $(SUBDIROBJS),cat $(SUBDIROBJS); )echo $(addprefix $(subdir)/,$(OBJS)) ) >$@
|
||||
|
||||
objfiles.txt:: $(SUBDIROBJS) $(OBJS)
|
||||
|
|
|
|||
Loading…
Reference in a new issue