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

LIBS := -ltermlib
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
