blob: f5782c64f6e41557c753b102717d96395f8c5139 (
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
|
BUILT_SOURCES = resources.h resources.c
noinst_LTLIBRARIES = libdataimages.la
RES_FILES = \
dock-station-left-symbolic.svg \
dock-station-right-symbolic.svg \
dock-station-bottom-symbolic.svg
libdataimages_la_SOURCES = \
resources.h resources.c
libdataimages_la_CFLAGS = $(LIBGIOUNIX_CFLAGS)
devdir = $(includedir)/chrysalide/$(subdir:src/%=core/%)
dev_HEADERS = $(libdataimages_la_SOURCES:%c=)
resources.c: gresource.xml $(RES_FILES)
glib-compile-resources --target=$@ --sourcedir=$(srcdir) --generate-source --c-name data_images gresource.xml
resources.h: gresource.xml
glib-compile-resources --target=$@ --sourcedir=$(srcdir) --generate-header --c-name data_images gresource.xml
CLEANFILES = resources.h resources.c
EXTRA_DIST = gresource.xml $(RES_FILES)
|