blob: c1af4265d722c6104da50dd86ae06777fc9c3058 (
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
42
43
44
45
46
47
|
NULL =
INCLUDES = \
$(HG_CFLAGS) \
$(NULL)
LIBS = \
@LDFLAGS@ \
-export-dynamic \
$(HG_LIBS) \
$(NULL)
LDADDS = \
$(top_builddir)/hieroglyph/libhieroglyph.la \
$(NULL)
lib_LTLIBRARIES = \
libhieroglyph-x11.la \
$(NULL)
libhieroglyph_x11_la_SOURCES = \
hgdevice-x11.c \
hgdevice-x11.h \
$(NULL)
libhieroglyph_x11_la_LIBADD = \
$(LDADDS) \
$(NULL)
devicedir = $(HIEROGLYPH_DEVICEDIR)
device_LTLIBRARIES = \
libx11-embedded-device.la \
$(NULL)
libx11_embedded_device_la_SOURCES = \
x11-embedded-main.c \
$(NULL)
libx11_embedded_device_la_CFLAGS = \
-DHG_LOG_DOMAIN="\"X11-Embedded-Device\"" \
$(CFLAGS) \
$(NULL)
libx11_embedded_device_la_LDFLAGS = \
-avoid-version \
-module \
$(LDFLAGS) \
$(NULL)
libx11_embedded_device_la_LIBADD = \
libhieroglyph-x11.la \
$(LDADDS) \
$(NULL)
|