⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 PostgreSQL7.4.6 for Linux
💻
字号:
#-------------------------------------------------------------------------## Makefile for src/bin/initdb## Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group# Portions Copyright (c) 1994, Regents of the University of California## $Header: /cvsroot/pgsql/src/bin/initdb/Makefile,v 1.29 2003/09/07 03:36:03 tgl Exp $##-------------------------------------------------------------------------subdir = src/bin/initdbtop_builddir = ../../..include $(top_builddir)/src/Makefile.globalall: initdbinitdb: initdb.sh $(top_builddir)/src/Makefile.global	sed -e 's/@VERSION@/$(VERSION)/g' \	    -e 's,@SHELL@,$(SHELL),g' \	    -e 's,@HAVE_IPV6@,$(HAVE_IPV6),g' \	    -e 's,@bindir@,$(bindir),g' \	    -e 's,@datadir@,$(datadir),g' \	  $< >$@	chmod a+x $@install: all installdirs	$(INSTALL_SCRIPT) initdb $(DESTDIR)$(bindir)/initdbinstalldirs:	$(mkinstalldirs) $(DESTDIR)$(bindir)uninstall:	rm -f $(DESTDIR)$(bindir)/initdbclean distclean maintainer-clean:	rm -f initdb

⌨️ 快捷键说明

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