summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/AVStreams/server_discovery/Makefile
blob: 78ffd8c486dff483fd60d710797559db299c0c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# $Id$

# Makefile

.SUFFIXES: .idl .module .java .class 

.java.class:
	$(VISIJAVA_ROOT)/bin/vbjc $<

.idl.module:
	$(VISIJAVA_ROOT)/bin/idl2java -DTAO_HAS_DYNAMIC_PROPERTY_BUG \
	-no_tie -no_skel -no_bind -no_comments -no_examples $<
	touch $@

default: all

clean: 
	rm -rf CosTrading CosTradingDynamic CosTradingRepos TAO_Sequences TAO_VR
	rm -f *.class *.tmp *.module *~

IDLS = \
	$(TAO_ROOT)/orbsvcs/orbsvcs/CosTrading.idl \
	$(TAO_ROOT)/orbsvcs/orbsvcs/Sequences.idl \
	$(TAO_ROOT)/orbsvcs/tests/AVStreams/mpeg/source/server/Video_Repository.idl

MODULES = $(IDLS:.idl=.module)

SRCS = \
	TS_Resolve.java \
	Property_Evaluator.java \
	Discover_Server.java

CLASSES = $(SRCS:.java=.class) 

all:	$(MODULES) $(CLASSES)