]> git.sur5r.net Git - glabels/blob - src/mygal/Makefile.am
Imported Upstream version 2.2.8
[glabels] / src / mygal / Makefile.am
1 INCLUDES = \
2         $(MYGAL_CFLAGS)
3
4
5 libmygal_la_LDFLAGS=\
6         $(MYGAL_LIBS)
7
8 noinst_LTLIBRARIES = libmygal.la
9
10 libmygal_la_SOURCES =                   \
11         widget-color-combo.c            \
12         widget-color-combo.h            \
13         e-util.h                        \
14         e-colors.c                      \
15         e-colors.h                      \
16         mygal-combo-box.c               \
17         mygal-combo-box.h               \
18         color-palette.c                 \
19         color-palette.h                 \
20         color-group.c                   \
21         color-group.h                   \
22         e-marshal.c                     \
23         e-marshal.h
24
25 marshal_sources = \
26         e-marshal.c \
27         e-marshal.h
28
29 $(libmygal_la_OBJECTS) : $(marshal_sources)
30
31 e-marshal.h: e-marshal.list $(GLIB_GENMARSHAL)
32         $(GLIB_GENMARSHAL) $< --header --prefix=e_marshal > $@
33 e-marshal.c: e-marshal.list $(GLIB_GENMARSHAL)
34         $(GLIB_GENMARSHAL) $< --body --prefix=e_marshal > $@
35
36 EXTRA_DIST = e-marshal.list
37 CLEANFILES = $(marshal_sources)
38
39 DONT_DIST_SOURCE = $(marshal_sources)
40
41 dist-hook:
42         for file in $(DONT_DIST_SOURCE) ; do \
43             rm -f $(distdir)/$$file ; \
44         done