makefile.tcc
来自「linux下的C语言开发」· TCC 代码 · 共 47 行
TCC
47 行
## 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 + =
减小字号Ctrl + -
显示快捷键?