summaryrefslogtreecommitdiff
path: root/libnautilus-adapter/Makefile.am
blob: 2d628f018a25b578a21ed89bc0acff1e37fab889 (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
NULL=

lib_LTLIBRARIES=libnautilus-adapter.la


INCLUDES=\
	-I$(top_srcdir) \
	$(LIBNAUTILUS_ADAPTER_CFLAGS) \
	$(NULL)

libnautilus_adapter_la_LDFLAGS= \
	$(NULL)


nautilus_adapter_factory_idl_sources =	        \
	nautilus-adapter-factory-stubs.c	\
	nautilus-adapter-factory-skels.c	\
	nautilus-adapter-factory.h		\
	nautilus-adapter-factory-common.c


BUILT_SOURCES = \
	$(nautilus_adapter_factory_idl_sources)


libnautilus_adapter_la_SOURCES = 		\
	$(nautilus_adapter_factory_idl_sources) \
	$(NULL)


$(nautilus_adapter_factory_idl_sources): nautilus_adapter_factory_idl_stamp
nautilus_adapter_factory_idl_stamp: nautilus-adapter-factory.idl
	$(ORBIT_IDL) -I$(top_srcdir) $(LIBNAUTILUS_ADAPTER_IDL_INCLUDES) $<
	touch $@


CLEANFILES = \
	$(nautilus_adapter_factory_idl_sources)	        \
	nautilus_adapter_factory_idl_stamp

EXTRA_DIST = \
	nautilus-adapter-factory.idl

dist-hook:
	cd $(distdir); rm -f $(CLEANFILES)