blob: a37e8a78177855eefc81cb97e8fd253931331b6e (
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
36
37
|
##----------------------------------------------------------------------------
## $Id$
##
## Makefile.am for the TAO IDL compiler --- 'util' sub-directory
##----------------------------------------------------------------------------
##
## Process this file with automake to create Makefile.in
##
## The number in AUTOMAKE_OPTIONS is the minimum required version automake
## needed to process this file.
AUTOMAKE_OPTIONS = 1.4
## SUBDIRS = utl_tmpl
INCLUDES = -I$(top_builddir) -I$(top_srcdir) \
-I$(top_srcdir)/TAO_IDL/include
noinst_LIBRARIES = libutil.a
libutil_a_SOURCES = \
utl_decllist.cpp \
utl_error.cpp \
utl_exceptlist.cpp \
utl_exprlist.cpp \
utl_global.cpp \
utl_identifier.cpp \
utl_idlist.cpp \
utl_indenter.cpp \
utl_labellist.cpp \
utl_list.cpp \
utl_namelist.cpp \
utl_scope.cpp \
utl_stack.cpp \
utl_string.cpp \
utl_strlist.cpp
|