CC=	/bin/cc -g -Dsun -I/usr/local/include -Bstatic
LIBRARIES=	-lX11

#--------------------------------------------------------------------------
#
#	Part 1
#	Part 1 develops a set of modules to help Xlib 
#	application devlopment.  These modules will be
#	linked to any application that needs them.
#
#

# send, a KeyPress XEvent sender, from Part 3, Chapter 18
#
SEND_OBJS=	display.o send.o sendev.o wsearch.o interactive.c

start: start.o $(SEND_OBJS)
		$(CC) -g -o start $(SEND_OBJS) start.o $(LIBRARIES)
 
install: start
	mv start $(INSTALL_DIR)/bin
