# -------------------------------------------
# Makefile for CPU
# Version 2.1, released 26-Feb-1990
# 
# Copyright (C) 1990, Ethan Dicks
#
# This program is *not* in the public domain, but may be freely
# redistributed on the condition that it is not sold, nor used in any
# commercial or shareware package without the express written permission
# of the author.  This program may be included in a freely redistributable
# library, including, but not limited to the Fred Fish library collection.
# In other words, selling this program is right out, but giving it away is
# encouraged.
#
# -------------------------------------------

LCFLAGS = -b -r -v -y
LNFLAGS  = SC SD ND

CPU:	CPU.o
	blink CPU.o $(LNFLAGS)

CPU.o:	CPU.c
	lc $(LCFLAGS) CPU
