📄 makefile.in
字号:
#!gmake#CC = @CC@prefix = @prefix@exec_prefix = @exec_prefix@bindir = @bindir@includedir = @includedir@libdir = @libdir@VPATH = @libreplacedir@srcdir = @srcdir@builddir = @builddir@INSTALL = @INSTALL@.PHONY: testCFLAGS=-I. -I@libreplacedir@ @CFLAGS@OBJS = @LIBREPLACEOBJ@all: showflags libreplace.a testsuiteshowflags: @echo 'libreplace will be compiled with flags:' @echo ' CC = $(CC)' @echo ' CFLAGS = $(CFLAGS)' @echo ' LIBS = $(LIBS)'install: all mkdir -p $(libdir) $(INSTALL) libreplace.a $(libdir)libreplace.a: $(OBJS) ar -rcsv $@ $(OBJS)test: all ./testsuiteinstallcheck: install testTEST_OBJS = test/testsuite.o test/os2_delete.o test/strptime.otestsuite: libreplace.a $(TEST_OBJS) $(CC) -o testsuite $(TEST_OBJS) -L. -lreplace.c.o: @echo Compiling $*.c @mkdir -p `dirname $@` @$(CC) $(CFLAGS) -c $< -o $@clean: rm -f *.o test/*.o *.a testsuite rm -f testfile.datdistclean: clean rm -f *~ */*~ rm -f config.log config.status config.h config.cache rm -f Makefilerealdistclean: distclean rm -f configure config.h.in
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -