📄 makefile.tcc
字号:
## Makefile for Borland's Borland-C++ compiler#CC=tcc## Flags # -N -- Check for stack overflow# -v -- Enable debugging# -w -- Turn on all warnings# -ml -- Large model#CFLAGS=-N -v -w -mlOBJS= stat.obj ch_type.obj token.obj in_file.objall: stat.out stat.exe test.outtest.out: test.c stat.exe stat test.c >test.out# This generates a test output based on another example# in this book.stat.out: stat.exe stat ..\calc3\calc3.c >stat.outstat.exe: $(OBJS) $(CC) $(CFLAGS) -estat $(OBJS)stat.obj: stat.c token.h $(CC) $(CFLAGS) -c stat.cin_file.obj: in_file.c in_file.h $(CC) $(CFLAGS) -c in_file.cch_type.obj: ch_type.c ch_type.h $(CC) $(CFLAGS) -c ch_type.ctoken.obj: token.c token.h ch_type.h $(CC) $(CFLAGS) -c token.cclean: erase stat.exe erase stat.obj erase ch_type.obj erase in_file.obj erase token.obj
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -