#
# Makefile for dribble test system
#
# (C) Ingvar Mattsson, <ingvar@bofh.se>
#

INCLUDES=".."
LIBS=".."
PROGRAMS=testlocal testnet sexptest encoder

all: $(PROGRAMS)
testnet: testnet.c ../llist.h ../wf-engine.h ../wfnetlib.a
	$(CC) $(CFLAGS) -o testnet testnet.c ../wfnetlib.a

testlocal: testlocal.c ../wflib.a ../wf-engine.h ../llist.h
	$(CC) $(CFLAGS) -o testlocal testlocal.c ../wflib.a

clean:
	$(RM) *~ core
dist-clean: clean
	$(RM) -f logs/* $(PROGRAMS)
