summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/VisiBroker/client/Makefile
blob: c834d8f74eec3b60c792cc9027076bb206565e73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#	$Id$

include stdmk

EXE = client 	

all: $(EXE)

clean:
	-$(RM) core *.o cubitC.* cubitS.* $(EXE) 
	-$(RM) -r Templates.DB

cubitS.cpp: cubit.idl
	$(ORBCC) cubit.idl

cubitC.cpp: cubit.idl
	$(ORBCC) cubit.idl

client: cubitC.o Profile_Timer.o client.o
	$(CC) -o client cubitC.o Profile_Timer.o client.o \
	$(LIBPATH) $(LIBORB) $(STDCC_LIBS)