home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 18
/
amigaformatcd18.iso
/
-in_the_mag-
/
emulation
/
emus
/
handlers
/
amicdfilesystem
/
src
/
smakefile
< prev
next >
Wrap
Makefile
|
1997-07-31
|
589b
|
28 lines
# Makefile for SAS/C 6.50
#
#
# Add the switch DEFINE=DEBUG in order to enable the
# debug code (out to the serial port, or Sushi window).
.c.o:
SC $(DEBUG) $*.c
.asm.o:
SC $(DEBUG) $*.asm
LFLAGS = SMALLCODE SMALLDATA NODEBUG NOICONS QUIET BATCH NOALVS
#DEBUG = DEFINE=DEBUG
LIBS = LIB:sc.lib LIB:amiga.lib LIB:debug.lib
OBJ1 = device.o stackswap.o generic.o cdrom.o iso9660.o rock.o hfs.o
all: AmiCDFileSystem
AmiCDFileSystem: $(OBJ1)
SLINK FROM $(OBJ1) TO $@ LIB $(LIBS) $(LFLAGS)
@Protect $@ -e
copy AmiCDFileSystem L:
clean:
rm -f *.o *.lnk *.dbg amicdfilesystem