#
# Makefile for zoomacc
#
#

#
# Define ACCorPRG to produce a file that can be run as a .PRG or as a .ACC
#

CC=lc.ttp
CFLAGS=-B -r1r -O -v -w -cusf -uACCorPRG
AS=asm.ttp
ASOPTS=-w
LD=clink.ttp
OBJS=zoomacc.o zoomline.o qblit.o

.s.o:
	$(AS) $(ASOPTS) $*.s

zoomacc.acc: $(OBJS)
#zoomacc.prg: $(OBJS)
	$(LD) VERBOSE FROM csracc.o $(OBJS) LIB lcgsr.lib lcsr.lib TO zoomacc.acc
#	$(LD) VERBOSE FROM csraut.o $(OBJS) LIB lcgsr.lib lcsr.lib TO zoomacc.prg

# End of makefile
