blob: 154a38f79c3035fcc79d3e223720db4c64da465e (
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
|
# $Id$
#
# Makefile for building the TAO Smart Proxies library
#
NAME = TAO_SmartProxies
OBJFILES = \
$(OBJDIR)\Smart_Proxies.obj
RESOURCE = $(OBJDIR)\SmartProxies.res
!ifdef STATIC
CFLAGS = $(ACE_CFLAGS) $(TAO_CFLAGS) $(TAO_SMARTPROXIES_CFLAGS)
!else
CFLAGS = $(ACE_CFLAGS) $(TAO_CFLAGS) $(TAO_SMARTPROXIES_CFLAGS) \
-DTAO_SMARTPROXIES_BUILD_DLL
!endif
CPPDIR = .
INCDIR_NAME = tao\SmartProxies
INCLUDES = \
*.h *.inl
LIBFILES = \
$(TAO_LIB) \
$(ACE_LIB)
!include <$(ACE_ROOT)\include\makeinclude\build_core_library.bor>
|