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

📄 makefile

📁 这是一个同样来自贝尔实验室的和UNIX有着渊源的操作系统, 其简洁的设计和实现易于我们学习和理解
💻
字号:
CC = cc     # the usual situationCFLAGS =    # the usual situationCC = lcc        # you will probably want to remove this CFLAGS = -g -N -I/usr/include/lcc -I/usr/include       # and thisYFLAGS = -dOFILES = picl.o main.o print.o misc.o symtab.o blockgen.o boxgen.o \	 circgen.o arcgen.o linegen.o movegen.o textgen.o \	 input.o for.o pltroff.o $(ALLOC)CFILES = main.c print.c misc.c symtab.c blockgen.c boxgen.c circgen.c \	 arcgen.c linegen.c movegen.c textgen.c \	 input.c for.c pltroff.cSRCFILES = picy.y picl.l pic.h $(CFILES) makefile FIXES README PS-PEmacrospic:	picy.o $(OFILES) pic.h	$(CC) $(CFLAGS) picy.o $(OFILES) -lm$(OFILES):	pic.h prevy.tab.hpicy.o:	pic.hprevy.tab.h:	y.tab.h	-cmp -s y.tab.h prevy.tab.h || cp y.tab.h prevy.tab.hbundle:	@bundle $(SRCFILES) bowell:	 $(SRCFILES)  pictest.a 	push bowell $? /usr/src/cmd/pic	touch bowellclean:	rm *.o a.out *y.tab.hinstall:	cp a.out /usr/bin/pic	strip /usr/bin/pic

⌨️ 快捷键说明

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