blob: 1455a0635df27f9ce0bf2860b58bd7cf853f1f75 (
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
|
SUBDIRS = tests
INCLUDES = -I$(top_srcdir) \
-I$(srcdir)
lib_LTLIBRARIES = libply.la
libplydir = $(includedir)/plymouth-1/ply
libply_HEADERS = \
ply-event-loop.h \
ply-command-parser.h \
ply-frame-buffer.h \
ply-buffer.h \
ply-array.h \
ply-list.h \
ply-logger.h \
ply-image.h \
ply-terminal.h \
ply-terminal-session.h \
ply-utils.h
libply_la_CFLAGS = $(PLYMOUTH_CFLAGS)
libply_la_LIBADD = $(PLYMOUTH_LIBS)
libply_la_LDFLAGS = -export-symbols-regex '^[^_].*' \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
-no-undefined
libply_la_SOURCES = ply-event-loop.c \
$(libply_HEADERS) \
ply-command-parser.c \
ply-frame-buffer.c \
ply-buffer.c \
ply-array.c \
ply-list.c \
ply-logger.c \
ply-image.c \
ply-terminal.c \
ply-terminal-session.c \
ply-utils.c
MAINTAINERCLEANFILES = Makefile.in
|