blob: d2c1459db76f1de56de3979d6dc9ca70aea0f0a6 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
##----------------------------------------------------------------------------
## $Id$
##
## Top-level Makefile.am for the TAO IDL compiler
##----------------------------------------------------------------------------
##
## 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 = driver fe narrow be be_include include ast util
INCLUDES = -I$(top_srcdir)/TAO_IDL/include \
-I$(top_srcdir)/TAO_IDL/be_include -I$(top_srcdir)/TAO_IDL/fe
man_MANS = tao_idl.1
bin_PROGRAMS = tao_idl
tao_idl_SOURCES = \
tao_idl.cpp
tao_idl_LDADD = \
$(top_builddir)/TAO_IDL/driver/libdriver.a \
$(top_builddir)/TAO_IDL/fe/libfe.a \
$(top_builddir)/TAO_IDL/narrow/libnarrow.a \
$(top_builddir)/TAO_IDL/be/libbe.a \
$(top_builddir)/TAO_IDL/ast/libast.a \
$(top_builddir)/TAO_IDL/util/libutil.a
IDL_CFE_VERSION = \"1.3.0\"
## Is the "+=" a portable make feature?
CXXFLAGS += \
-DIDL_CFE_VERSION=$(IDL_CFE_VERSION)
EXTRA_DIST = $(man_MANS)
tags:
rm -f TAGS
find . -name "*.h" -print | etags -a --c++ -
find . -name "*.cpp" -print | etags -a -
## Clean up some additional files/directories possibly created during
## the configure script tests.
clean-local:
-rm -f *.bak *.rpo *.sym lib*.*_pure_* Makefile.old core
-rm -rf ptrepository Templates.DB gcctemp.c gcctemp so_locations
|