makefile.in

来自「samba服务器!」· IN 代码 · 共 61 行

IN
61
字号
#!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 + =
减小字号Ctrl + -
显示快捷键?