File: Makefile.am

package info (click to toggle)
orbit 0.3.0-2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 5,628 kB
  • ctags: 7,089
  • sloc: ansic: 89,906; sh: 5,226; yacc: 1,292; makefile: 381; lex: 223
file content (56 lines) | stat: -rw-r--r-- 1,685 bytes parent folder | download
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
54
55
56
noinst_PROGRAMS=test test-dynamic echo-client echo-server test-object echo-local
SUBDIRS=test-poa
BUILT_SOURCES=echo.h echo-common.c echo-stubs.c echo-skels.c

INCLUDES=-I$(top_builddir)/src/orb -I$(top_builddir)/src \
	 -I$(top_srcdir)/src/orb -I$(top_srcdir)/src @GLIB_CFLAGS@
FLAGS = -static
DEPS = $(top_builddir)/src/orb/libORBit.la \
	$(top_builddir)/src/ORBitutil/libORBitutil.la \
	$(top_builddir)/src/IIOP/libIIOP.la
LDADDS = \
	$(top_builddir)/src/orb/libORBit.la \
	$(top_builddir)/src/IIOP/libIIOP.la \
	$(top_builddir)/src/ORBitutil/libORBitutil.la \
	@GLIB_LIBS@ \
	-lm

test_SOURCES=test.c
test_LDFLAGS = $(FLAGS)
test_DEPENDENCIES = $(DEPS)
test_LDADD= $(LDADDS)

echo_client_SOURCES=echo-client.c echo.h echo-common.c echo-stubs.c
echo_client_LDFLAGS = $(FLAGS)
echo_client_DEPENDENCIES = $(DEPS) echo.h
echo_client_LDADD= $(LDADDS)

echo_server_SOURCES=echo-server.c echo.h echo-common.c echo-skels.c
echo_server_LDFLAGS = $(FLAGS)
echo_server_DEPENDENCIES = $(DEPS) echo.h
echo_server_LDADD= $(LDADDS)

echo_local_SOURCES=echo-local.c echo.h echo-common.c echo-stubs.c echo-skels.c
echo_local_LDFLAGS = $(FLAGS)
echo_local_DEPENDENCIES = $(DEPS) echo.h
echo_local_LDADD= $(LDADDS)

test_dynamic_SOURCES=test.c
test_dynamic_DEPENDENCIES = $(DEPS)
test_dynamic_LDADD= $(LDADDS)

test_object_SOURCES=test-object.c
test_object_LDFLAGS = $(FLAGS)
test_object_DEPENDENCIES = $(DEPS)
test_object_LDADD= $(LDADDS)

echo-client.o: echo.h

echo-server.o: echo.h

EXTRA_DIST = echo.idl test-args.idl inheritance-test.idl

echo.h echo-common.c echo-stubs.c echo-skels.c: echo.idl \
				 $(top_builddir)/src/idl-compiler/orbit-idl
	$(top_builddir)/src/idl-compiler/orbit-idl $<