makefile

来自「PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统」· 代码 · 共 67 行

TXT
67
字号
#-------------------------------------------------------------------------## Makefile for backend/catalog## $PostgreSQL: pgsql/src/backend/catalog/Makefile,v 1.57 2005/09/08 20:07:41 tgl Exp $##-------------------------------------------------------------------------subdir = src/backend/catalogtop_builddir = ../../..include $(top_builddir)/src/Makefile.globalOBJS = catalog.o dependency.o heap.o index.o indexing.o namespace.o aclchk.o \       pg_aggregate.o pg_constraint.o pg_conversion.o pg_depend.o \       pg_largeobject.o pg_namespace.o pg_operator.o pg_proc.o pg_shdepend.o \       pg_type.oBKIFILES = postgres.bki postgres.descriptionall: SUBSYS.o $(BKIFILES)SUBSYS.o: $(OBJS)	$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)# Note: there are some undocumented dependencies on the ordering in which# the catalog header files are assembled into postgres.bki.  In particular,# indexing.h had better be last.POSTGRES_BKI_SRCS := $(addprefix $(top_srcdir)/src/include/catalog/,\	pg_proc.h pg_type.h pg_attribute.h pg_class.h pg_autovacuum.h \	pg_attrdef.h pg_constraint.h pg_inherits.h pg_index.h \	pg_operator.h pg_opclass.h pg_am.h pg_amop.h pg_amproc.h \	pg_language.h pg_largeobject.h pg_aggregate.h pg_statistic.h \	pg_rewrite.h pg_trigger.h pg_listener.h pg_description.h pg_cast.h \	pg_namespace.h pg_conversion.h pg_depend.h \	pg_database.h pg_tablespace.h pg_pltemplate.h \	pg_authid.h pg_auth_members.h pg_shdepend.h \	indexing.h \    )pg_includes := $(sort -I$(top_srcdir)/src/include -I$(top_builddir)/src/include)# see explanation in ../parser/Makefilepostgres.description: postgres.bki ;postgres.bki: genbki.sh $(POSTGRES_BKI_SRCS) \    $(top_srcdir)/src/include/postgres_ext.h $(top_builddir)/src/include/pg_config_manual.h	AWK='$(AWK)' $(SHELL) $< $(pg_includes) --set-version=$(VERSION) -o postgres $(POSTGRES_BKI_SRCS).PHONY: install-datainstall-data: $(BKIFILES) installdirs	$(INSTALL_DATA) postgres.bki         $(DESTDIR)$(datadir)/postgres.bki	$(INSTALL_DATA) postgres.description $(DESTDIR)$(datadir)/postgres.description	$(INSTALL_DATA) $(srcdir)/system_views.sql $(DESTDIR)$(datadir)/system_views.sql	$(INSTALL_DATA) $(srcdir)/information_schema.sql $(DESTDIR)$(datadir)/information_schema.sql	$(INSTALL_DATA) $(srcdir)/sql_features.txt $(DESTDIR)$(datadir)/sql_features.txtinstalldirs:	$(mkinstalldirs) $(DESTDIR)$(datadir).PHONY: uninstall-datauninstall-data:	rm -f $(addprefix $(DESTDIR)$(datadir)/, $(BKIFILES) system_views.sql information_schema.sql sql_features.txt)clean:	rm -f SUBSYS.o $(OBJS) $(BKIFILES)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?