home *** CD-ROM | disk | FTP | other *** search
Makefile | 1989-05-26 | 1.9 KB | 70 lines |
- From ra!tut!draken!kth!mcvax!uunet!lll-winken!csd4.milw.wisc.edu!leah!rpi!sun.soe.clarkson.edu!nelson Fri May 26 13:05:53 EET DST 1989
- Article 1139 of comp.binaries.ibm.pc.d:
- Path: chyde!ra!tut!draken!kth!mcvax!uunet!lll-winken!csd4.milw.wisc.edu!leah!rpi!sun.soe.clarkson.edu!nelson
- >From: nelson@sun.soe.clarkson.edu (Russ Nelson)
- Newsgroups: comp.binaries.ibm.pc.d
- Subject: Re: v02i098: flzh_rn.c, faster lzhuf
- Message-ID: <NELSON.89May25234532@sun.soe.clarkson.edu>
- Date: 26 May 89 03:45:32 GMT
- References: <7380@bsu-cs.bsu.edu> <NELSON.89May23103134@sun.soe.clarkson.edu>
- Sender: news@sun.soe.clarkson.edu
- Reply-To: nelson@clutx.clarkson.edu
- Followup-To: comp.binaries.ibm.pc.d
- Organization: Clarkson University, Postdam NY
- Lines: 51
- In-reply-to: nelson@sun.soe.clarkson.edu's message of 23 May 89 14:31:34 GMT
-
- Two people have reported trouble getting flzh_rn.c working. Here is the
- makefile that I used:
-
- CFLAGS = -M -y -G -O -Z
-
- lzhuf.exe: lzhuf.obj
- tcc $(CFLAGS) lzhuf.obj
-
- lzhuf.obj: lzhuf.c
- tcc -c $(CFLAGS) -DUSE_ASM lzhuf.c
-
- orig.exe: orig.obj
- tcc $(CFLAGS) orig.obj
-
- orig.obj: orig.c
- tcc -c $(CFLAGS) orig.c
-
- lzhuf.mrg: lzhuf.c
- tcc -S $(CFLAGS) -DUSE_ASM lzhuf.c
- tcod lzhuf
- del lzhuf.asm
-
- all: lzhuf.exe orig.exe
-
- # orig is the original lzhuf.c as posted to Usenet.
- test: all
- lzhuf e input compresd
- orig d compresd output
- -diff -c input output
- orig e input compresd
- lzhuf d compresd output
- -diff -c input output
-
- #ex is a little program that times another program.
- time: nul
- ex orig e input compresd
- ex orig e input compresd
- ex orig e input compresd
- ex lzhuf e input compresd
- ex lzhuf e input compresd
- ex lzhuf e input compresd
- ex orig d compresd output
- ex orig d compresd output
- ex orig d compresd output
- ex lzhuf d compresd output
- ex lzhuf d compresd output
- ex lzhuf d compresd output
- --
- --russ (nelson@clutx [.bitnet | .clarkson.edu])
- I'm a right-to-lifer -- everyone has a right to earn a living sufficient to
- feed himself and his family.
-
-
-