home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
001-099
/
ff039.lzh
/
Driver
/
makefile
< prev
next >
Wrap
Makefile
|
1986-10-23
|
968b
|
32 lines
#******************************************************************
#* *
#* Copyright (C) 1986, Commodore Amiga Inc. All rights reserved. *
#* Permission granted for non-commercial use * *
#* *
#******************************************************************
OBJ = mydev.o testdev.o
.asm.o:
echo "Assembling $*.asm"
Assem $*.asm -o $@ -i :include -c S -c W150000 -v $*.err
tdev: mydev.device testdev
echo "DONE!"
testdev: testdev.o
echo "Linking $*"
alink FROM startup.obj+testdev.o to testdev LIBRARY SYS:lib/amiga.lib ver tlink.err
$(OBJ) : mydev.i asmsupp.i
mydev.device: mydev.o
echo "Linking $@"
alink FROM mydev.o to mydev.device LIBRARY SYS:lib/amiga.lib+\
sys:lib/debug.lib ver mlink.err
echo "Copying $@ to devs:"
copy $@ devs:$@
echo "Copying $* to df0:expansion:"
copy mydev.device df0:expansion/$*