home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magazyn Amiga Shareware Floppies
/
ma74.lha
/
MAShare74
/
unsit1.5c.amiga
/
src
/
makefile
< prev
next >
Wrap
Makefile
|
1991-09-08
|
325b
|
15 lines
# Makefile for Unsit v1.5
#
# Compiled with Manx 5.0e1
# Amiga version, optimizations, small code/small data
CFLAGS = -DAMIGA -so
SOURCES = unsit.c updcrc.c getopt.c pio.c
OBJECTS = unsit.o updcrc.o getopt.o pio.o
unsit: $(OBJECTS) unstuffit.h pio.h
ln -o unsit $(OBJECTS) -lc
.c.o: $(SOURCES)
cc $(CFLAGS) $*.c