#
# File: spectrum/Makefile
# Author: K.R. Sloan
# Last Modified: 11 June 1991
# Purpose: hack colors

PROGRAMS = xy2rgb PaintSpectrum
OBJECTS =
INCLUDE =
CFLAGS = -g ${INCLUDE}

all: ${PROGRAMS}

xy2rgb: xy2rgb.c
	cc -o xy2rgb ${CFLAGS} xy2rgb.c -lm -lc

PaintSpectrum: PaintSpectrum.c
	cc -o PaintSpectrum ${CFLAGS} PaintSpectrum.c -lm -lc

