📄 makefile
字号:
#ident "@(#)cfront:src/makefile 1.6"CC = CC#set $(PATCH) to -DPATCH if using the patch version:#PATCH=-DPATCH# set $(PATCH) to nothing if using nm/munch:PATCH=CCFLAGS=-OOFILES = alloc.o dcl.o dcl2.o del.o error.o expand.o expr.o expr2.o \ lalex.o lex.o main.o norm.o norm2.o print.o repr.o \ simpl.o size.o table.o typ.o typ2.o y.tab.ocfront: $(OFILES) $(CC) -o cfront $(OFILES)cfront.h: token.h typedef.hy.tab.c: gram.y yacc gram.yalloc.o: alloc.c cfront.h $(CC) $(CCFLAGS) -c alloc.c dcl.o: dcl.c cfront.h size.h $(CC) $(CCFLAGS) -c dcl.c dcl2.o: dcl2.c cfront.h size.h $(CC) $(CCFLAGS) -c dcl2.c del.o: del.c cfront.h $(CC) $(CCFLAGS) -c del.c error.o: error.c cfront.h size.h $(CC) $(CCFLAGS) -c error.c expand.o: expand.c cfront.h $(CC) $(CCFLAGS) -c expand.c expr.o: expr.c cfront.h size.h $(CC) $(CCFLAGS) -c expr.c expr2.o: expr2.c cfront.h size.h $(CC) $(CCFLAGS) -c expr2.c lalex.o: lalex.c cfront.h tqueue.h yystype.h $(CC) $(CCFLAGS) -c lalex.c lex.o: lex.c cfront.h size.h tqueue.h yystype.h $(CC) $(CCFLAGS) -c lex.c main.o: main.c cfront.h $(CC) $(PATCH) $(CCFLAGS) -c main.c norm.o: norm.c cfront.h size.h $(CC) $(CCFLAGS) -c norm.c norm2.o: norm2.c cfront.h size.h $(CC) $(CCFLAGS) -c norm2.c print.o: print.c cfront.h $(CC) $(CCFLAGS) -c print.c repr.o: repr.c cfront.h $(CC) $(CCFLAGS) -c repr.c simpl.o: simpl.c cfront.h size.h $(CC) $(CCFLAGS) -c simpl.c size.o: size.c cfront.h size.h $(CC) $(CCFLAGS) -c size.c table.o: table.c cfront.h $(CC) $(CCFLAGS) -c table.c typ.o: typ.c cfront.h size.h $(CC) $(CCFLAGS) -c typ.c typ2.o: typ2.c cfront.h size.h $(CC) $(CCFLAGS) -c typ2.c y.tab.o: y.tab.c cfront.h size.h $(CC) $(CCFLAGS) -c y.tab.c
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -