# The following variables are configurable.
#-----------------------------------#
LOCALCFLAGS :=
LOCALIFLAGS := 
LOCALLFLAGS :=
LOCALSFLAGS :=

#for linux use the following line:
LIBS := -ltermcap -lc
#for the sun4 use the following line;
#LIBS := -ltermlib -lc 
# note the linux setup is the default because it seems to work on the sun
# as well.
#
# Aix requires LIB := -ltermcap -lc
#
BIN := emp_client
IMPORTS := bit.h misc.h proto.h queue.h
#-----------------------------------#

# Productions:
#	depend:	create the dependencies
#	all:	make the binary
#	saber:	load things for saber
#	tags:	make tags

include ../make/GenMakefile
include $(DEPENDENCIES)
include ../make/BinMakefile

# I dunno -- this should be run every time
# you play with the .h files, but for now I'm
# too lazy to make real dependencies for this
# one production.  It will probably bite hard
# later

imports:
	/bin/rm -f $(IMPORTS)
	for i in $(IMPORTS); do\
		cp $(SRCDIR)/h/$$i . ; \
	done
