# "Take/Tek2430", a Tek2430 interface to view program, # Copyright (C) 1987, 1990 California Institute of Technology. # Original authors: John Tanner, Dave Gillespie, Mass Sivilotti, John Lazzaro # Unix Port Maintainer: John Lazzaro # Maintainers's address: lazzaro@hobiecat.cs.caltech.edu; # CB 425/ CU Boulder/Boulder CO 91125. # # #This program is free software; you can redistribute it and/or modify #it under the terms of the GNU General Public License as published by #the Free Software Foundation (Version 1, Feb 1989). # #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #GNU General Public License for more details. # #You should have received a copy of the GNU General Public License #along with this program; see the file COPYING. If not, write to #the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # # tek2430 makefile CC ?= gcc CFLAGS += -I../../psys/include -DF_OK=0 LIBP2C = ../../psys/src/libp2c.a #IEEEDIR = ../../iotech/sun4c/4.1c/ieeeio.o #IEEEDIR = /home/auspex/f/sounds/lazzaro/chipmunk/new/sun4c/4.1.1c/ieeeio.o LDFLAGS += $(LIBP2C) $(IEEEDIR) OBJS = \ tek2430.o \ mytool2.o \ take2430.o take2430: $(OBJS) tek2430: tek2430main.o tek2430.o $(CC) $(CFLAGS) tek2430.o tek2430main.o $(LDFLAGS) -o tek2430