📄 makefile.in
字号:
## Makefile for the common source directory## $Id: Makefile.in,v 2.5 2000/02/03 12:45:56 sxw Exp $#srcdir = @srcdir@SUBDIRS = md5 util template url @GNU_REGEXDIR@prefix = @prefix@INSTALL_BINDIR = $(prefix)/binINSTALL_LIBDIR = $(prefix)/libINSTALL_MANDIR = $(prefix)/manCC = @CC@INSTALL = @INSTALL@INSTALL_BIN = @INSTALL_PROGRAM@INSTALL_FILE = @INSTALL_DATA@RANLIB = @RANLIB@LN_S = @LN_S@XTRA_LIBS = @XTRA_LIBS@DEBUG_TOP = @DEBUG_TOP@all: this-all do-allclean: do-clean this-cleandistclean: do-distclean this-distcleaninstall: do-installthis-all: lib-dir all-qdbm # all-gdbmthis-clean: @(cd qdbm; $(MAKE) $(MFLAGS) clean) -rm -f lib/*.a include/gdbm.h include/curia.h include/depot.hthis-distclean: this-clean @(cd qdbm; $(MAKE) $(MFLAGS) distclean) -rm -f Makefile include/autoconf.h include/paths.h config.status core## Compiles and installs gdbm from scratch. Works with gdbm-1.7.3# Updated for gdbm-1.8.0#all-gdbm: @echo Making all in gdbm @if (cd gdbm; \ $(MAKE) CC="$(CC) -static" CFLAGS="$(DEBUG_TOP)" $(MFLAGS); \ ); \ then true; else exit 1; fi; $(INSTALL_FILE) gdbm/gdbm.h include/gdbm.h; \ $(INSTALL_FILE) gdbm/.libs/libgdbm.a lib/libgdbm.a; \ $(RANLIB) lib/libgdbm.aall-qdbm: @echo Making all in qdbm @if (cd qdbm; \ $(MAKE) CC="$(CC) -static" CFLAGS="$(DEBUG_TOP)" $(MFLAGS); \ ); \ then true; else exit 1; fi; $(INSTALL_FILE) $(srcdir)/qdbm/hovel.h include/gdbm.h; \ $(INSTALL_FILE) $(srcdir)/qdbm/curia.h include/curia.h; \ $(INSTALL_FILE) $(srcdir)/qdbm/depot.h include/depot.h; \ $(INSTALL_FILE) qdbm/libqdbm.a lib/libgdbm.a; \ $(RANLIB) lib/libgdbm.alib-dir: @if test ! -d lib; then \ mkdir lib; \ echo chmod a+x lib; \ chmod a+x lib; \ fi;DO_X = do-clean do-distclean do-all do-install$(DO_X): @target=`echo $@ | sed -e 's/^do-//'`; \ for dir in $(SUBDIRS); do \ echo Making $$target in $$dir; \ if (cd $$dir; $(MAKE) $(MFLAGS) $${target}); \ then true; else exit 1; fi; \ done
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -