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

📄 makefile.tc

📁 和Unix的compress/uncompress兼容的压缩/解压算法16位程序
💻 TC
字号:
#This makefile is set up for Turbo C v2.0 and Turbo make utility

#the following means small model, maximum optimizing, define NDEBUG
#DFLG=-DNDEBUG
DFLG=
CFLAGS =-ms -G -O -r
INCLUDE=D:\TC\INCLUDE
LIB =D:\TC\LIB
WILD=$(LIB)\WILDARGS.OBJ
#WILD=

#use the following for linking non debug version
#file set up for library for real mode operation
#you will have to modify for your compiler

compress.exe : compress.obj compusi.obj compapi.obj
    tcc $(CFLAGS) -L$(LIB) compress.obj compusi.obj compapi.obj $(WILD)


compress.obj: compress.c compress.h
    tcc -c $(CFLAGS) $(DFLG) -I$(INCLUDE) compress.c

compusi.obj: compusi.c compress.h
    tcc -c $(CFLAGS) $(DFLG) -I$(INCLUDE) compusi.c

compapi.obj: compapi.c compress.h
    tcc -c $(CFLAGS) $(DFLG) -I$(INCLUDE) compapi.c

⌨️ 快捷键说明

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