
# Makefile configuration
include 	../../Make.conf

TARGETS		= ringtest texttest metatest metamsgtest newproctest clienttest


# Add common directory to include path
CFLAGS	        += -I..
LDLIBS	        += ../common.a


all:		$(TARGETS)


# Clean
clean:
		rm -f *.o $(TARGETS) core

