## Makefile.am -- Process this file with automake to produce Makefile.in SUBDIRS = tkwidgets to_change windows lib_LTLIBRARIES = libmarTcl.la INCLUDES = \ $(VTK_CFLAGS) $(IDO_CFLAGS) \ $(WX_CFLAGS) $(GSL_CFLAGS) $(KGFO_CFLAGS) \ -I$(TCL_INC_DIR) -I$(TK_INC_DIR) \ -I../include libmarTcl_la_SOURCES = marTclInterface.h wrap_maracas.cxx libmarTcl_la_LDFLAGS = \ -version-info $(MARACAS_TCL_VER) \ $(VTK_LIBS) -lvtkCommonTCL \ $(IDO_LIBS) $(WX_LIBS) \ $(TCLTK_LIBS) \ $(GSL_LIBS) $(KGFO_LIBS) libmarTcl_la_LIBADD = ../kernel/libmarKernel.la EXTRA_DIST = tclexe.dsp \ wrap_maracas.i \ maracas_start.tcl \ general.tcl \ string_table.tcl # Special compilation commands wrap_maracas.cxx: wrap_maracas.i swig -tcl8 -c++ -o wrap_maracas.cxx wrap_maracas.i # Special targets maracas.tcl : echo "#!/usr/bin/wish" > maracas.tcl echo "" >> maracas.tcl echo "load $(libdir)/libmarTcl.so maracas" >> maracas.tcl echo "source ./maracas_start.tcl" >> maracas.tcl echo "" >> maracas.tcl echo "# eof - maracas.tcl" >> maracas.tcl echo "" >> maracas.tcl chmod +x maracas.tcl ## eof - Makefile.am