blob: 2143d8e83388e8fe72473ca6efb091234231e35e (
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
|
#
# Makefile for building the Grid example
#
NAME = Grid_Server
OBJFILES = \
$(OBJDIR)\GridC.obj \
$(OBJDIR)\GridS.obj \
$(OBJDIR)\Grid_i.obj \
$(OBJDIR)\Simple_util.obj \
$(OBJDIR)\server.obj
CPPDIR = .;..
IDLDIR = .
!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
#
# IDL Build rules
#
$(IDLDIR)\GridC.cpp $(IDLDIR)\GridS.cpp: $(IDLDIR)\Grid.idl
$(TAO_IDL) $**
|