blob: 57315847044b5e5c535e7e0dc8dd0e3cccfb38f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# CORBA stuff
IDLS = $(top_builddir)/wombat/wombat.idl
IDL_GENERATED = \
wombat.h \
wombat-common.c \
wombat-skels.c \
wombat-stubs.c
$(IDL_GENERATED): $(IDLS)
$(ORBIT_IDL) -I $(srcdir) -I $(datadir)/idl `$(GNOME_CONFIG) --cflags idl` \
$(top_builddir)/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)
|