makefile.os2

来自「和Unix的compress/uncompress兼容的压缩/解压算法16位程序」· OS2 代码 · 共 33 行

OS2
33
字号
#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 + =
减小字号Ctrl + -
显示快捷键?