#
# Aztec Make makefile, for Lattice C V4.0 :-)
#
# Commodore 64 spoof Emulator, April 1988
#

OBJS   = main.o commands.o screen.o
#
#
#
.c.o:
	lc -s -v $*.c
#
#
#
all: c64

c64: $(OBJS)
    blink from lib:c.o $(OBJS) to C64 sc sd nd map ram:map \
		  lib lib:lc.lib lib:amiga.lib

main.o:	main.c screen.h commands.h
screen.o: screen.c screen.h
commands.o: commands.c commands.h
