home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-01-18 | 886 b | 33 lines |
- #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
-