/*
 * Imakefile for Tknews.
 *
 * Michael D. Moore (mdm@cis.ohio-state.edu)
 * October 7, 1993
 * 
 */

/*
 * Set this to be where the tknews executable should be installed to.
 */

BIN_DIR = ../

/*
 * Set this to be where the tknews scripts are going to be.
 */

SCRIPT_DIR = ../scripts

/*
 * Set this to be where the tknews library files are going to be.
 */

LIBRARY_DIR = ../lib

/*
 * These two defines indicate where the scripts and lib directories are 
 * from the tknews distribution.   
 */

DEFINES = -DSCRIPT_DIR=\"$(SCRIPT_DIR)\" -DLIBRARY_DIR=\"$(LIBRARY_DIR)\"

/*
 * Indicate here any special include paths you may need
 */

INCLUDES = -I./include

/*
 * Indicate here any special library paths you may need
 */

LOCAL_LDFLAGS = -L/n/comics/0/mdm-tmp/lib

/*
 * If you need any support libraries to compile, designate them here.
 */

EXTRA_LIBS = 

/*
 * This is the tk library.  Normally you can just use -ltk here,
 * but if necessary, designate the entire path to the library, as 
 * below :
 */


TK_LIB = /n/comics/0/mdm-tmp/lib/libtk.a

/*
TK_LIB = -ltk
*/

/*
 * This is the tcl library location.  Normally you can just use -ltcl
 * here, but if necessary, designate the entire path to the library,
 * as below :
 */


TCL_LIB = /n/comics/0/mdm-tmp/lib/libtcl.a

/*
TCL_LIB = -ltcl
*/

/*
 *  You shouldn't need to modify below this line.
 */

SYS_LIBRARIES = $(LIBPATH) $(TK_LIB) $(TCL_LIB) -lX11 -lm $(EXTRA_LIBS)
SRCS = news.c newscomm.c main.c tcp.c
OBJS = news.o newscomm.o main.o tcp.o
ComplexProgramTarget(tknews)
