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

📄 makefile

📁 早期freebsd实现
💻
字号:
##       @(#)Makefile	1.7 90/01/03 NFS Rev 2 Testsuite#      1.5 Lachman ONC Test Suite  source## to make tests, use 'make'# to copy tests to another directory, use 'make copy DESTDIR=dir'# to copy source to another directory, use 'make dist DESTDIR=dir'TESTS = test1 test2 test3 test4 test5 test6 test7 test8 test9AUXTESTS = test4a test5a test5b test7a test7bDESTDIR = /no/such/pathCFLAGS = -O $(COMPAT)all: origtests auxtestsorigtests: $(TESTS)auxtests: $(AUXTESTS)test1: test1.c subr.o	$(CC) $(CFLAGS) -o $@ $@.c subr.o $(LIBS)test2: test2.c subr.o	$(CC) $(CFLAGS) -o $@ $@.c subr.o $(LIBS)test3: test3.c subr.o	$(CC) $(CFLAGS) -o $@ $@.c subr.o $(LIBS)test4: test4.c subr.o	$(CC) $(CFLAGS) -o $@ $@.c subr.o $(LIBS)test4a: test4a.c subr.o	$(CC) $(CFLAGS) -o $@ $@.c subr.o $(LIBS)test5: test5.c subr.o	$(CC) $(CFLAGS) -o $@ $@.c subr.o $(LIBS)test5a: test5a.c subr.o	$(CC) $(CFLAGS) -o $@ $@.c subr.o $(LIBS)test5b: test5b.c subr.o	$(CC) $(CFLAGS) -o $@ $@.c subr.o $(LIBS)test6: test6.c subr.o	$(CC) $(CFLAGS) -o $@ $@.c subr.o $(LIBS)test7: test7.c subr.o	$(CC) $(CFLAGS) -o $@ $@.c subr.o $(LIBS)test7a: test7a.c subr.o	$(CC) $(CFLAGS) -o $@ $@.c subr.o $(LIBS)test7b: test7b.c subr.o	$(CC) $(CFLAGS) -o $@ $@.c subr.o $(LIBS)test8: test8.c subr.o	$(CC) $(CFLAGS) -o $@ $@.c subr.o $(LIBS)test9: test9.c subr.o	$(CC) $(CFLAGS) -o $@ $@.c subr.o $(LIBS)clean:	rm -f *.o $(TESTS) $(AUXTESTS)copy: $(TESTS)	cp runtests $(TESTS) $(AUXTESTS) $(DESTDIR)dist:	cp runtests Makefile *.c *.h $(DESTDIR)

⌨️ 快捷键说明

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