2002-11-04 Rodrigo Moya <rodrigo@ximian.com> * Makefile.am: fixed flags for $(ORBIT_IDL). * wombat-client.[ch]: converted to BonoboObject. svn path=/trunk/; revision=18537
36 lines
780 B
Makefile
36 lines
780 B
Makefile
INCLUDES = $(WOMBAT_CFLAGS)
|
|
|
|
# CORBA stuff
|
|
|
|
IDLS = $(top_srcdir)/wombat/Evolution-Wombat.idl
|
|
IDL_GENERATED = \
|
|
Evolution-Wombat.h \
|
|
Evolution-Wombat-common.c \
|
|
Evolution-Wombat-skels.c \
|
|
Evolution-Wombat-stubs.c
|
|
|
|
$(IDLS): $(ORBIT_IDL)
|
|
|
|
$(IDL_GENERATED): $(IDLS)
|
|
$(ORBIT_IDL) -I $(srcdir) -I $(datadir)/idl $(IDL_INCLUDES) \
|
|
$(top_srcdir)/wombat/Evolution-Wombat.idl
|
|
|
|
# Wombat library
|
|
lib_LTLIBRARIES = libwombat.la
|
|
|
|
wombatincludedir = $(includedir)/evolution/wombat
|
|
wombatinclude_HEADERS = \
|
|
wombat-client.h
|
|
|
|
libwombat_la_SOURCES = \
|
|
$(IDL_GENERATED) \
|
|
wombat-client.c \
|
|
$(wombatinclude_HEADERS)
|
|
|
|
# Static lib for pilot conduits
|
|
|
|
noinst_LTLIBRARIES = libwombat-static.la
|
|
|
|
libwombat_static_la_SOURCES = $(libwombat_la_SOURCES)
|
|
libwombat_static_la_LDFLAGS = --all-static
|