home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
source
/
aufstols.zoo
/
aufstools.1
/
binhex
/
Makefile
< prev
next >
Wrap
Makefile
|
1991-02-26
|
368b
|
24 lines
CFLAGS= -O -Dstrrchr=rindex
LFLAGS=
CFILES= binhex.c gethead.c crc.c run.c 8to6.c
OFILES= binhex.o gethead.o crc.o run.o 8to6.o
unxbin : binhex
rm -f unxbin
ln binhex unxbin
binhex: $(OFILES)
cc -o binhex $(OFILES)
binhex.o: Makefile
gethead.o: Makefile
debug:
cc -o binhexd -g $(CFILES)
lint:
lint $(LFLAGS) $(CFILES)
clean:
rm -f binhex unxbin $(OFILES)