home *** CD-ROM | disk | FTP | other *** search
- #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
- LIB =D:\MSC\LIB
- BIN =c:/usr/bin
- UPLOAD=d:/files/general
- 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 @dos.lnk
- exepack compress.exe comp16.exe
-
- 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 comp16.exe $(BIN)/comp16.exe
- cp comp16.exe $(BIN)/zcat.exe
- cp comp16.exe $(BIN)/uncomp.exe
-
-
- comp14:
- cl -c -AS -Ox -DNDEBUG -DMSC -DMAXBITS=14 compress.c compusi.c compapi.c
- link @dos.lnk
- exepack compress.exe comp14.exe
- rm compress.obj compusi.obj compapi.obj
-
- comp12:
- cl -c -AS -Ox -DNDEBUG -DMSC -DMAXBITS=12 compress.c compusi.c compapi.c
- link @dos.lnk
- exepack compress.exe comp12.exe
- rm compress.obj compusi.obj compapi.obj
-
- $(OBJ): compress.h compress.fns
-