#####################################################
# Makefile for APCComm                              #
#   Ralf Hoffmann <ralf@boomerangsworld.de          #
#####################################################

###################################################################
# if you have compiling problems then try editing Makefile.config #
###################################################################

all:
	( cd src && make all )

test:
	( cd src && make test )

clean:
	( cd src && make clean )

install:
	( cd src && make install )
