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

📄 makefile.os2

📁 和Unix的compress/uncompress兼容的压缩/解压算法16位程序
💻 OS2
字号:
#This makefile is set up for my make program and Microsoft C v5.1
#It will not run properly under Microsoft MAKE program.
#setargv.obj is Microsoft's code for wild card expansion
#wild card expansion routine to come.

#the following means small model, maximum optimizing, define NDEBUG
CFLAGS =-AS -Ox -DNDEBUG -DMSC -DBIND
LIB =D:\MSC\LIB
BIN =c:/os2/binp
OBJ=compress.obj compusi.obj compapi.obj

#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 : $(OBJ)
	link @os2.lnk

btoa.exe: btoa.obj
	cl -DMSC btoa.c

atob.exe: atob.obj
	cl -DMSC atob.c

install:
	cp btoa.exe $(BIN)/btoa.exe
	cp atob.exe $(BIN)/atob.exe 
	cp compos2.exe $(BIN)/comp16.exe
	cp compos2.exe $(BIN)/zcat.exe
	cp compos2.exe $(BIN)/uncomp.exe

$(OBJ): compress.h compress.fns

⌨️ 快捷键说明

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