aboutsummaryrefslogtreecommitdiffstats
path: root/lib/egg/Makefile.am
blob: dc2f0c6e3923c0c7d08657e7863526e9e164fdde (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
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
57
EGGSOURCES = \
    eggtreemultidnd.c \
    egg-editable-toolbar.c \
    egg-toolbars-model.c \
    egg-toolbar-editor.c \
    eggstatusicon.c \
    eggtrayicon.c \
    eggtraymanager.c

EGGHEADERS = \
    eggtreemultidnd.h \
    egg-editable-toolbar.h \
    egg-toolbars-model.h \
    egg-toolbar-editor.h \
    eggstatusicon.h \
    eggtrayicon.h \
    eggtraymanager.h

noinst_HEADERS = \
    $(EGGHEADERS) \
    eggmarshalers.h \
    eggintl.h

noinst_LTLIBRARIES = libegg.la

libegg_la_SOURCES = \
    $(EGGSOURCES) \
    eggmarshalers.c

libegg_la_CPPFLAGS = \
    -I$(top_builddir)/lib/egg       \
    -DCURSOR_DIR=\"$(pkgdatadir)/art\"  \
    $(AM_CPPFLAGS)

libegg_la_CFLAGS = \
    $(EPIPHANY_DEPENDENCY_CFLAGS)       \
    $(AM_CFLAGS)

BUILT_SOURCES = eggmarshalers.h eggmarshalers.c

eggmarshalers.h: eggmarshalers.list
    $(GLIB_GENMARSHAL) --prefix=_egg_marshal $(srcdir)/eggmarshalers.list --header > eggmarshalers.h

eggmarshalers.c: eggmarshalers.list
    $(GLIB_GENMARSHAL) --prefix=_egg_marshal $(srcdir)/eggmarshalers.list --header --body > eggmarshalers.c

EXTRA_DIST=         \
    eggmarshalers.list

EGGFILES=$(EGGSOURCES) $(EGGHEADERS)
EGGDIR=$(srcdir)/../../../libegg/libegg

regenerate-built-sources:
    EGGFILES="$(EGGFILES) eggmarshalers.list" EGGDIR="$(EGGDIR)" $(srcdir)/update-from-egg.sh

CLEANFILES = $(BUILT_SOURCES)
DISTCLEAN_FILES = $(BUILT_SOURCES)