mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-05 00:04:46 +00:00
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
CC=cl65
|
|
AS=ca65
|
|
LD=ld65
|
|
CFLAGS=-Oirs -t $(TARGET)
|
|
AFLAGS=
|
|
|
|
|
|
IP65LIB=../ip65/ip65.lib
|
|
C64NETLIB=../drivers/c64net.lib
|
|
APPLE2NETLIB=../drivers/apple2net.lib
|
|
|
|
INCFILES=\
|
|
../inc/common.i\
|
|
../inc/commonprint.i\
|
|
../inc/net.i\
|
|
|
|
%.o: %.c
|
|
$(CC) -c $(CFLAGS) $<
|
|
|
|
%.o: %.s
|
|
$(AS) $(AFLAGS) $<
|
|
|
|
%.prg: %.o $(IP65LIB) $(C64NETLIB) $(INCFILES) ../cfg/c64prg.cfg
|
|
$(LD) -m $*.map -C ../cfg/c64prg.cfg -o $*.prg $(AFLAGS) $< $(IP65LIB) $(C64NETLIB)
|
|
|
|
%.pg2: %.o $(IP65LIB) $(APPLE2NETLIB) $(INCFILES) ../cfg/a2bin.cfg
|
|
$(LD) -m $*.map -C ../cfg/a2bin.cfg -o $*.pg2 $(AFLAGS) $< $(IP65LIB) $(APPLE2NETLIB)
|
|
|
|
ip65test.dsk: testdns.pg2 testdottedquad.pg2
|
|
ripxplore.rb --init BeautifulBoot ip65test.dsk -a testdns.pg2 -t AppleBinary
|
|
ripxplore.rb ip65test.dsk -a testdottedquad.pg2 -t AppleBinary
|
|
|
|
all: \
|
|
ip65test.dsk \
|
|
testdns.prg \
|
|
test_cart_api.prg \
|
|
testdns.pg2 \
|
|
testdottedquad.pg2 \
|
|
testdottedquad.prg \
|
|
|
|
clean:
|
|
rm -f *.o
|
|
rm -f testdns.prg testdns.map testdns.pg2 testdottedquad.prg testdottedquad.pg2
|
|
rm -f ip65test.dsk
|
|
|
|
distclean: clean
|
|
rm -f *~
|