################################################################################
#	Makefile for BIdl tests
#			T.Barnaby,	BEAM Ltd,	9/5/03
#				updated by	D.Korchagin,	CERN AB-BI-SW,	2007-08-31
################################################################################
#

TOP	= ../../..

include $(TOP)/Makefile.config

BIN		= /usr/beam/bin
DEBUGFLAGS	= -g
CXXFLAGS	= -I. -I/usr/beam/include $(DEBUGFLAGS)
LDFLAGS		= -L/usr/beam/lib/$(CPU) $(DEBUGFLAGS)
LDLIBS		= -lBoap -lBeam

all:	client server

install:	all

clean:
	rm -f *.$(CPU).o client server bidl.i Test1[SC].* 

idl:
	../bidl Test1.idl

# Produce files
client: client.$(CPU).o Test1C.$(CPU).o
server: server.$(CPU).o Test1S.$(CPU).o
