#
#  Make file: Makefile
#
#  Module:    project Riemann output routines
#
#  Contents:  This make file generates the object file output.o which includes 
#	      the project Riemann output routines.  These routines can be called
#	      by any of the math programs to output data to a file in a format 
#	      which can be read by xdisp, the X11 project Riemann graphics 
#	      displayer.
#

INCLDIR= ../include

INCLUDE= -I$(INCLDIR)
DEBUG= -O
CFLAGS= $(DEBUG) $(INCLUDE)
CC= gcc

OBJ= output.o
SRC= output.c

output: $(OBJ)

lint: $(SRC)
	lint $(INCLUDE) $(SRC) > lint

tags: *.c
	ctags *.c

clean:  
	rm -f $(OBJ) core lint tags

maketd:
	maketd $(INCLUDE) $(SRC)

# DO NOT DELETE THIS LINE - maketd DEPENDS ON IT
# Dependencies generated at: Tue Aug  1 20:23:39 EST 1989

output.o: ../include/master.h
output.o: output.c

# DO NOT ADD ANYTHING HERE - WILL GO AWAY

