home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
120.lha
/
Muncho2
/
makefile
< prev
next >
Wrap
Makefile
|
1986-11-21
|
703b
|
24 lines
# This is a barbaric Lattice makefile. I have modified Lattice's
# version of _main.c so that #ifdef TINYMAIN actually works -- i.e.
# so it doesn't open a console window when invoked as an icon from
# the Workbench. _main.c is Lattice's so it's not included. But
# newer versions probably don't even need it...
#
all: DiskSounds
DiskSounds: main.o soundobj.o audio.o
ALINK LIB:LStartup.obj+LIB:_main.o+main.o+soundobj.o+audio.o LIB \
LIB:lc.lib+LIB:amiga.lib TO DiskSounds
main.o: main.c soundobj.h
LC1 -i:include/ ${DEBUG} main
LC2 -v main
audio.o: audio.c
LC1 -i:include/ ${DEBUG} audio
LC2 -v audio
soundobj.o: soundobj.c soundobj.h
LC1 -i:include/ ${DEBUG} soundobj
LC2 -v soundobj