summaryrefslogtreecommitdiff
path: root/src/libply/Makefile.am
blob: e0cb84de8ce32a02180237a1a3b12243c7560bb3 (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
48
49
50
51
52
53
SUBDIRS = tests
INCLUDES = -I$(top_srcdir)                                                    \
           -I$(srcdir)                                                        \
           -DPLYMOUTH_TIME_DIRECTORY=\"$(localstatedir)/lib/plymouth/\"       

if WITH_SYSTEM_ROOT_INSTALL
librarydir = $(libdir:/usr%=%)
else
librarydir = $(libdir)
endif
library_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-bitarray.h                                            \
		    ply-list.h                                                \
		    ply-hashtable.h                                           \
		    ply-logger.h                                              \
		    ply-key-file.h                                            \
		    ply-progress.h                                            \
		    ply-terminal.h                                            \
		    ply-terminal-session.h                                    \
		    ply-trigger.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-bitarray.c                                            \
		    ply-list.c                                                \
		    ply-hashtable.c                                           \
		    ply-logger.c                                              \
		    ply-key-file.c                                            \
		    ply-progress.c                                            \
		    ply-terminal.c                                            \
		    ply-terminal-session.c                                    \
		    ply-trigger.c                                             \
		    ply-utils.c

MAINTAINERCLEANFILES = Makefile.in