f23683363b
svn path=/trunk/; revision=10443
31 lines
605 B
Makefile
31 lines
605 B
Makefile
INCLUDES = \
|
|
$(BONOBO_VFS_GNOME_CFLAGS) \
|
|
$(GNOME_INCLUDEDIR)
|
|
|
|
# CORBA stuff
|
|
|
|
IDLS = $(top_srcdir)/wombat/wombat.idl
|
|
IDL_GENERATED = \
|
|
wombat.h \
|
|
wombat-common.c \
|
|
wombat-skels.c \
|
|
wombat-stubs.c
|
|
|
|
$(IDLS): $(ORBIT_IDL)
|
|
|
|
$(IDL_GENERATED): $(IDLS)
|
|
$(ORBIT_IDL) -I $(srcdir) -I $(datadir)/idl `$(GNOME_CONFIG) --cflags idl` \
|
|
$(top_srcdir)/wombat/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)
|