mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-15 02:04:28 +00:00
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
CC=cl65
|
|
AS=ca65
|
|
DA=dasm
|
|
LD=ld65
|
|
CFLAGS=-Oirs -t $(TARGET)
|
|
AFLAGS=
|
|
|
|
|
|
IP65TCPLIB=../ip65/ip65_tcp.lib
|
|
C64PROGLIB=../drivers/c64prog.lib
|
|
#NT2PLAY=nt2play.o
|
|
INCFILES=\
|
|
../inc/common.i\
|
|
../inc/commonprint.i\
|
|
../inc/net.i\
|
|
|
|
all: upnatom.prg upnatom.d64
|
|
|
|
%.o: %.s
|
|
$(AS) $(AFLAGS) $<
|
|
|
|
upnatom.o: upnatom.s sine_data.i
|
|
$(AS) $(AFLAGS) $<
|
|
|
|
sine_data.i: make_sine_data.rb
|
|
ruby make_sine_data.rb
|
|
|
|
upnatom.prg: upnatom.o nt2play.o $(IP65TCPLIB) $(C64PROGLIB) $(INCFILES) ../cfg/c64prg.cfg
|
|
$(LD) -m upnatom.map -vm -C ../cfg/c64prg.cfg -o upnatom.prg $(AFLAGS) $< $(IP65TCPLIB) $(C64PROGLIB) $(NT2PLAY)
|
|
# cp upnatom.prg ../../server/boot/
|
|
|
|
%.prg: %.o $(IP65TCPLIB) $(C64PROGLIB) $(INCFILES) ../cfg/c64prg.cfg
|
|
$(LD) -m $*.map -vm -C ../cfg/c64prg.cfg -o $*.prg $(AFLAGS) $< $(IP65TCPLIB) $(C64PROGLIB)
|
|
|
|
|
|
upnatom.d64: upnatom.prg url.cfg
|
|
cp upnatom.prg autoexec.prg
|
|
ripxplore.rb --init CbmDos upnatom.d64 -a autoexec.prg
|
|
ripxplore.rb upnatom.d64 -a url.cfg -t C64Seq
|
|
|
|
httpd.prg: httpd.asm
|
|
$(DA) httpd.asm -ohttpd.prg
|
|
|
|
%.d64: %.prg
|
|
cp $*.prg autoexec.prg
|
|
ripxplore.rb --init CbmDos $*.d64 -a autoexec.prg
|
|
|
|
clean:
|
|
rm -f *.o *.pg2 *.prg *.map upnatom.d64
|
|
|
|
distclean: clean
|
|
rm -f *~
|