EXTRA_CFLAGS		= -I..
LIB			= ../libdev.a

OBJ = \
	allocation.o\
	graphics.o\
	plot.o\
	prune.o\
	replot.o\
	save.o\
	screen_plt.o\
	set_window.o\
	wind_conv.o\
	yes_no.o

$(LIB): $(OBJ)
	$(AR)

graphics.o:	../graphics.h
screen_plt.o:	../wind.h
wind_conv.o:	../wind.h  ../graphics.h

############################################
# the tags file created by this process is great for
# editting the library to look for function definitions
# vi -t <function name>

ctags:
	ctags *.c *.h
	sed 's/\?/\//g' tags > tags.tmp
	mv tags.tmp tags
