# -------------------------------------------
# Makefile for Oneplane
# Version 1.3, 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

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

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