mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-15 02:04:28 +00:00
3f6bdbc456
git-svn-id: http://svn.code.sf.net/p/netboot65/code@289 93682198-c243-4bdb-bd91-e943c89aac3b
86 lines
1.6 KiB
Makefile
86 lines
1.6 KiB
Makefile
CC=cl65
|
|
AS=ca65
|
|
|
|
DA=dasm
|
|
LD=ld65
|
|
CFLAGS=-Oirs -t $(TARGET)
|
|
AFLAGS=
|
|
|
|
|
|
|
|
IP65TCPLIB=../ip65/ip65_tcp.lib
|
|
|
|
C64RRNETLIB=../drivers/c64rrnet.lib
|
|
|
|
#NT2PLAY=nt2play.o
|
|
|
|
INCFILES=\
|
|
../inc/common.i\
|
|
../inc/commonprint.i\
|
|
../inc/net.i\
|
|
|
|
|
|
all: upnatom.prg upnatom.d64 webnoter.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
|
|
|
|
|
|
|
|
webnoter.o: webnoter.s form.html
|
|
$(AS) $(AFLAGS) $<
|
|
|
|
|
|
webnoter.prg: webnoter.o $(IP65TCPLIB) $(C64RRNETLIB) $(INCFILES) ../cfg/c64prg.cfg
|
|
$(LD) -m webnoter.map -vm -C ../cfg/c64prg.cfg -o webnoter.prg $(AFLAGS) $< $(IP65TCPLIB) $(C64RRNETLIB) $(NT2PLAY)
|
|
|
|
|
|
|
|
upnatom.prg: upnatom.o $(IP65TCPLIB) $(C64RRNETLIB) $(INCFILES) ../cfg/c64prg.cfg
|
|
$(LD) -m upnatom.map -vm -C ../cfg/c64prg.cfg -o upnatom.prg $(AFLAGS) $< $(IP65TCPLIB) $(C64RRNETLIB) $(NT2PLAY)
|
|
|
|
# cp upnatom.prg ../../server/boot/
|
|
|
|
%.prg: %.o $(IP65TCPLIB) $(C64RRNETLIB) $(INCFILES) ../cfg/c64prg.cfg
|
|
$(LD) -m $*.map -vm -C ../cfg/c64prg.cfg -o $*.prg $(AFLAGS) $< $(IP65TCPLIB) $(C64RRNETLIB)
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
webnoter.d64: webnoter.prg
|
|
cp webnoter.prg autoexec.prg
|
|
ripxplore.rb --init CbmDos webnoter.d64 -a ../carts/kipperkart.prg
|
|
ripxplore.rb webnoter.d64 -a autoexec.prg
|
|
|
|
|
|
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 *~
|