#------------------------------------------------------------------------- # # Makefile for catalog # # $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.23 2000/07/06 21:33:22 petere Exp $ # #------------------------------------------------------------------------- subdir = src/backend/catalog top_builddir = ../../.. include ../../Makefile.global OBJS = catalog.o heap.o index.o indexing.o aclchk.o \ pg_aggregate.o pg_operator.o pg_proc.o pg_type.o BKIFILES = global.bki template1.bki global.description template1.description all: SUBSYS.o $(BKIFILES) SUBSYS.o: $(OBJS) $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS) GLOBAL_BKI_SRCS := $(addprefix $(top_srcdir)/src/include/catalog/,\ pg_database.h pg_variable.h pg_shadow.h pg_group.h pg_log.h \ ) TEMPLATE1_BKI_SRCS := $(addprefix $(top_srcdir)/src/include/catalog/,\ pg_proc.h pg_type.h pg_attribute.h pg_class.h \ pg_inherits.h pg_index.h pg_statistic.h \ pg_operator.h pg_opclass.h pg_am.h pg_amop.h pg_amproc.h \ pg_language.h \ pg_aggregate.h pg_ipl.h pg_inheritproc.h \ pg_rewrite.h pg_listener.h pg_description.h indexing.h \ ) global.bki global.description: genbki.sh $(GLOBAL_BKI_SRCS) $(top_srcdir)/src/include/catalog/indexing.h CPP='$(CPP)' AWK='$(AWK)' $(SHELL) $< $(BKIOPTS) -o global -I$(top_srcdir)/src/include $(GLOBAL_BKI_SRCS) template1.bki template1.description: genbki.sh $(TEMPLATE1_BKI_SRCS) CPP='$(CPP)' AWK='$(AWK)' $(SHELL) $< $(BKIOPTS) -o template1 -I$(top_srcdir)/src/include $(TEMPLATE1_BKI_SRCS) .PHONY: install-bki install-bki: $(BKIFILES) installdirs $(INSTALL_DATA) global.bki $(datadir)/global.bki $(INSTALL_DATA) global.description $(datadir)/global.description $(INSTALL_DATA) template1.bki $(datadir)/template1.bki $(INSTALL_DATA) template1.description $(datadir)/template1.description installdirs: $(mkinstalldirs) $(datadir) .PHONY: uninstall-bki uninstall-bki: rm -f $(addprefix $(datadir)/, $(BKIFILES)) clean: rm -f SUBSYS.o $(OBJS) $(BKIFILES) depend dep: $(CC) -MM $(CFLAGS) *.c >depend ifeq (depend,$(wildcard depend)) include depend endif