mirror of
https://github.com/postgres/postgres.git
synced 2025-10-15 00:02:00 -04:00
33 lines
860 B
Makefile
33 lines
860 B
Makefile
#
|
|
# Makefile for utils
|
|
#
|
|
# $Header: /cvsroot/pgsql/src/backend/utils/Makefile,v 1.20 2002/09/03 21:45:42 petere Exp $
|
|
#
|
|
|
|
subdir = src/backend/utils/
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
SUBDIRS := adt cache error fmgr hash init misc mmgr sort time mb
|
|
SUBDIROBJS := $(SUBDIRS:%=%/SUBSYS.o)
|
|
|
|
|
|
all: SUBSYS.o fmgroids.h
|
|
|
|
SUBSYS.o: fmgrtab.o $(SUBDIROBJS)
|
|
$(LD) $(LDREL) $(LDOUT) $@ $^
|
|
|
|
$(SUBDIROBJS): $(SUBDIRS:%=%-recursive) ;
|
|
|
|
.PHONY: $(SUBDIRS:%=%-recursive)
|
|
$(SUBDIRS:%=%-recursive): fmgroids.h
|
|
$(MAKE) -C $(subst -recursive,,$@) SUBSYS.o
|
|
|
|
fmgroids.h fmgrtab.c: Gen_fmgrtab.sh $(top_srcdir)/src/include/catalog/pg_proc.h
|
|
CPP='$(CPP)' AWK='$(AWK)' $(SHELL) $< $(top_srcdir)/src/include/catalog/pg_proc.h
|
|
|
|
|
|
clean:
|
|
for dir in $(SUBDIRS); do $(MAKE) -C $$dir $@ || exit; done
|
|
rm -f SUBSYS.o fmgrtab.o fmgroids.h fmgrtab.c
|