#
# CHANGE the CFLAGS line to include the tcl and tk include files
#
CFLAGS = -I/usr/local/tk/include
#
# CHANGE this line so that the loader can find the tcl and tk libraries
#
LIBS   = -L/usr/local/tk/lib -ltk -ltcl -lX11 -lm

OBJS = tkAppInit.o warp.o

index:
	echo "auto_mkindex . *.tcl" | tclsh

wpwish: $(OBJS)
	$(CC) -o wpwish $(OBJS) $(LIBS)










