blob: d15678a92b1f40d6eb44095f01b8901e6b5aa2ed (
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
|
#
# Makefile for building the Policies test
#
NAME = Manipulation
OBJFILES = \
$(OBJDIR)\testC.obj \
$(OBJDIR)\testS.obj \
$(OBJDIR)\Manipulation.obj
CPPDIR = .;..
IDLDIR = .
IDLFILES = \
test.idl
!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
#
# IDL Build rules
#
$(IDLDIR)\testC.cpp $(IDLDIR)\testS.cpp: $(IDLDIR)\test.idl
$(TAO_IDL) $**
|