blob: bb2087b30ae0d6f2dc3fffe1660f9b831b469f81 (
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
|
BUILT_SOURCES = resources.h resources.c
noinst_LTLIBRARIES = libguidialogs.la
UI_FILES = \
binadmin.ui \
identity.ui
libguidialogs_la_SOURCES = \
about.h about.c \
bookmark.h bookmark.c \
export.h export.c \
goto.h goto.c \
gotox.h gotox.c \
identity.h identity.c \
plugins.h plugins.c \
resources.h resources.c \
shellcode.h shellcode.c \
storage.h storage.c
libguidialogs_la_LDFLAGS =
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
SUBDIRS =
resources.c: gresource.xml $(UI_FILES)
glib-compile-resources --target=$@ --sourcedir=$(srcdir) --generate-source --c-name gui_dialogs gresource.xml
resources.h: gresource.xml
glib-compile-resources --target=$@ --sourcedir=$(srcdir) --generate-header --c-name gui_dialogs gresource.xml
CLEANFILES = resources.h resources.c
EXTRA_DIST = gresource.xml $(UI_FILES)
|