blob: 2077c4b6f2c9c3dda77b0ee50474409e459d9bb8 (
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
|
BUILT_SOURCES = resources.h resources.c
noinst_LTLIBRARIES = libguicore.la
RES_FILES = \
../../../pixmaps/palette.png \
../../../pixmaps/collapse.png \
../../../pixmaps/collapse_dark.png \
../../../pixmaps/expand.png \
../../../pixmaps/expand_dark.png \
../../../pixmaps/snapshot.png \
../../../pixmaps/snapshot_current.png
libguicore_la_SOURCES = \
core.h core.c \
global.h global.c \
items.h items.c \
panels.h panels.c \
resources.h resources.c \
theme.h theme.c
libguicore_la_CFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)
devdir = $(includedir)/chrysalide/$(subdir:src/%=core/%)
dev_HEADERS = $(libguicore_la_SOURCES:%c=)
resources.c: gresource.xml $(RES_FILES)
glib-compile-resources --target=$@ --sourcedir=$(srcdir) --generate-source --c-name gui_core gresource.xml
resources.h: gresource.xml
glib-compile-resources --target=$@ --sourcedir=$(srcdir) --generate-header --c-name gui_core gresource.xml
CLEANFILES = resources.h resources.c
EXTRA_DIST = gresource.xml $(RES_FILES)
|