home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-12-18 | 1.0 KB | 36 lines |
- #/*
- # * This code was originally written by Matthew Dillon and put into Public Domain
- # *
- # * All changes concerning the adaption of Matt's original code to the
- # * Vector Connection I/O board are © 1991-1993 by Henning Schmiedehausen
- # * All rights for this changes are reserved. The original code is Public Domain
- # *
- # * This code is distributed with the expressed written permission of Matthew
- # * Dillon (Thank you very much, Matt)
- # *
- # */
-
- OD =
- EXE= parnet.device
-
- CFLAGS=
- AFLAGS= -iasminclude:
-
- CSRCS= parnet.c task.c unit_ctl.c unit_dgr.c unit_str.c
- ASRCS= tag.asm pio_wakeup.asm pio.asm lock.asm
- #ASRCS= tag.asm wakeup.asm par.asm lock.asm
-
- COBJS= $(CSRCS:"*.c":"$(OD)*.o")
- AOBJS= $(ASRCS:"*.asm":"$(OD)*.o")
-
- # dlink $(AOBJS) $(COBJS) -o %(left) dlib:cs.lib dlib:amigas20.lib
-
- $(EXE) : $(COBJS) $(AOBJS)
- slink from $(AOBJS) $(COBJS) ADDSYM SC SD TO %(left) LIB lib:sc.lib lib:amiga.lib BATCH STRIPDEBUG
-
- $(COBJS) : $(CSRCS)
- dcc $(CFLAGS) -o %(left) %(right) -c
-
- $(AOBJS) : $(ASRCS)
- a68k $(AFLAGS) -o%(left) %(right)
-