📄 makefile
字号:
## Makefile for the access methods module## $PostgreSQL: pgsql/src/backend/access/Makefile,v 1.9 2003/11/29 19:51:39 pgsql Exp $#subdir = src/backend/accesstop_builddir = ../../..include $(top_builddir)/src/Makefile.globalSUBDIRS := common gist hash heap index nbtree rtree transamSUBDIROBJS := $(SUBDIRS:%=%/SUBSYS.o)all: SUBSYS.oSUBSYS.o: $(SUBDIROBJS) $(LD) $(LDREL) $(LDOUT) $@ $^$(SUBDIROBJS): $(SUBDIRS:%=%-recursive) ;.PHONY: $(SUBDIRS:%=%-recursive)$(SUBDIRS:%=%-recursive): $(MAKE) -C $(subst -recursive,,$@) SUBSYS.oclean: for dir in $(SUBDIRS); do $(MAKE) -C $$dir $@ || exit; done rm -f SUBSYS.odep depend: for dir in $(SUBDIRS); do $(MAKE) -C $$dir $@ || exit; done
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -