blob: ab823da7f46b96a7919efc2deab22b7ac1f91920 (
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
|
INCLUDES = -I$(top_srcdir) \
-I$(srcdir)/../../libply \
-I$(srcdir)/../../libplybootsplash \
-I$(srcdir)/../.. \
-I$(srcdir)/.. \
-I$(srcdir)
plugindir = $(libdir)/plymouth
plugin_LTLIBRARIES = fade-in.la
fade_in_la_CFLAGS = $(PLYMOUTH_CFLAGS) \
-DPLYMOUTH_IMAGE_DIR=\"$(datadir)/plymouth/\" \
-DPLYMOUTH_LOGO_FILE=\"$(logofile)\" \
-DPLYMOUTH_BACKGROUND_COLOR=$(background_color) \
-DPLYMOUTH_BACKGROUND_END_COLOR=$(background_end_color) \
-DPLYMOUTH_BACKGROUND_START_COLOR=$(background_start_color)
fade_in_la_LDFLAGS = -module -avoid-version -export-dynamic
fade_in_la_LIBADD = $(PLYMOUTH_LIBS) \
../../libply/libply.la \
../../libplybootsplash/libplybootsplash.la
fade_in_la_SOURCES = $(srcdir)/plugin.c
plymouthdir = $(datadir)/plymouth/fade-in
plymouth_DATA = star.png bullet.png entry.png lock.png
EXTRA_DIST = $(plymouth_DATA)
MAINTAINERCLEANFILES = Makefile.in
|