# Makefile for example stuff
# Change of paths may be needed - no specific compiler options 
# may need some tweeking for your system.  Sorry, this was a
# quickie.
#
#  COPYRIGHT
#  Michael K. Ganley
#  mikegan@world.std.com
#  31 August 1995
#
#

CC			= gcc
LINKER		= $(CC)
LIBS		= /usr/local/lib/libtk.a \
			/usr/lib/libtcl.sa 
LLIBS		= -ltk -ltcl -lX11 -lm


# Flags
CFLAGS =  $(C_VOXOPTS) -I/usr/local/include \
			-I/usr/X11/include \
			-I/usr/src/tk3.6 \
			-I/usr/src/tcl7.3 

COFLAGS		= -q
LDFLAGS		= -I/usr/X11/include \
			-I/usr/src/tk3.6 \
			-I/usr/src/tcl7.3


all:	hello

hello:	hello.o libtk.a hello_ut.o
	$(CC) -o hello hello.o hello_ut.o $(LDFLAGS) $(LIBS) $(LLIBS)


hello.o:	hello.c hello.h inc_hdr.h $(LIBS)
	$(CC) $(CFLAGS) -c hello.c


hello_ut.o:	hello_ut.c inc_hdr.h
	$(CC) -c $(CFLAGS) hello_ut.c



inc_hdr.h: msg.h

hello.h : 

libtk.a :

