###############################################################################
#
# File:         Makefile
# RCS:          $Header: $
# Description:  
# Author:       Chee Chew
# Created:      Tue Aug 13 16:42:24 1991
# Modified:     Wed Aug 21 18:56:22 1991 (Chee Chew) chew@hplstl3
# Language:     N/A
# Package:      N/A
# Status:       Experimental (Do Not Distribute)
#
# (C) Copyright 1991, Hewlett-Packard Labs, all rights reserved.
#
###############################################################################


go : table

CFLAGS= -g -I/mit/interviews/3.0/iv/installed/include \
	-I ../cheelibs

LIBS= -L/mit/interviews/3.0/iv/installed/lib/VAX ../cheelibs/libcheelib.a -lIV -lX11 -lm
CC=CC

table : table.o
	CC table.o -o table $(LIBS)
.c.o:
	$(CC) $(CFLAGS) -c $<
