home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
138.lha
/
Iff_Archiver
/
Makefile
< prev
next >
Wrap
Makefile
|
1986-11-20
|
841b
|
37 lines
# iffar - IFF CAT archiver, makefile
#
# By Karl Lehenbauer, version 1.2, release date 5/9/88.
# This code is released to the public domain.
# See the README file for more information.
#
# This makefile is for Manx Aztec C 3.6a for the Commodore Amiga computer.
# It probably works under 3.4, but I haven't tried it.
#
#CFLAGS= -n +p -DDEBUG +Iincludes.pre
CFLAGS= +p +Iincludes.pre
HFILES= assert.h iff.h
.c.o:
cc $(CFLAGS) $*.c
all: iffar
say "ready"
clean:
-delete #?.o
-delete #?.bak
-delete includes.pre
scratch: clean all
iffar: includes.pre main.o cleanup.o create.o toc.o iff.o \
extract.o delete.o replace.o quickappend.o misc.o
ln +q -o iffar main.o cleanup.o create.o toc.o iff.o extract.o \
delete.o replace.o quickappend.o misc.o -lcl32
includes.pre: $(HFILES)
-delete #?.o
cc +p +Hincludes.pre includes.c