aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.am
blob: 76a041d5c6b19bef6ed91c5ba333134fc2916bc9 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
#
# Makefile.am
#
# Copyright (C) 2007 Alon Bar-Lev <alon.barlev@gmail.com>
#
# This file is released under the GPLv2.
#
AUTOMAKE_OPTIONS=foreign dist-bzip2

MAINTAINERCLEANFILES = \
	config.log config.status \
	$(srcdir)/Makefile.in \
	$(srcdir)/config.h.in $(srcdir)/config.h.in~ $(srcdir)/configure \
	$(srcdir)/install-sh $(srcdir)/ltmain.sh $(srcdir)/missing \
	$(srcdir)/depcomp $(srcdir)/aclocal.m4 \
	$(srcdir)/config.guess $(srcdir)/config.sub

SUBDIRS=\
	doc \
	manpages \
	scripts

sysconf_DATA=#required in order to create dir
if ENABLE_CREATE_DEVICE
dev_DATA=
endif

noinst_PROGRAMS=
if ENABLE_DEBUG
if ENABLE_FBSPLASH
noinst_PROGRAMS+=fbsplash-test
endif
endif
noinst_LIBRARIES=\
	libsuspend-common.a
sbin_PROGRAMS=\
	s2disk \
	swap-offset
dist_noinst_DATA= \
	conf/suspend.conf

if !ENABLE_MINIMAL
sbin_PROGRAMS+=\
	s2ram \
	s2both
if ENABLE_ENCRYPT
sbin_PROGRAMS+=\
	suspend-keygen
endif
initramfs_PROGRAMS=\
	resume
dist_doc_DATA=\
	HOWTO \
	$(srcdir)/README* \
	$(srcdir)/COPYING*
endif

install-data-hook:	install-sysconfDATA
	if [ -f $(DESTDIR)$(sysconfdir)/suspend.conf ]; then \
		$(INSTALL_DATA) $(srcdir)/conf/suspend.conf $(DESTDIR)$(sysconfdir)/suspend.conf.new; \
	else \
		$(INSTALL_DATA) $(srcdir)/conf/suspend.conf $(DESTDIR)$(sysconfdir)/suspend.conf; \
	fi
if ENABLE_CREATE_DEVICE
	$(MKNOD) $(DESTDIR)$(devdir)/snapshot c 10 231
endif

AM_CFLAGS=\
	-DS2RAM \
	-D_LARGEFILE64_SOURCE \
	$(LZO_CFLAGS) \
	$(LIBGCRYPT_CFLAGS)

common_s2disk_libs=\
	$(LZO_LIBS) \
	$(LIBGCRYPT_LIBS) \
	$(PTHREAD_LIBS)
common_s2ram_libs=

if ENABLE_SPLASHY
AM_CFLAGS+=\
	${SPLASHY_CFLAGS}
common_s2disk_libs+=\
	${SPLASHY_LIBS}
endif
if ENABLE_FBSPLASH
AM_CFLAGS+=\
	${FBSPLASH_CFLAGS}
common_s2disk_libs+=\
	${FBSPLASH_LIBS}
endif

libsuspend_common_a_SOURCES=\
	swsusp.h \
	vt.h vt.c \
	config_parser.h config_parser.c \
	md5.h md5.c \
	encrypt.h encrypt.c \
	loglevel.h loglevel.c \
	splash.h splash.c \
	splashy_funcs.h splashy_funcs.c \
	fbsplash_funcs.h fbsplash_funcs.c \
	bootsplash.h bootsplash.c \
	memalloc.h memalloc.c load.c

if ARCH_X86
libsuspend_common_a_SOURCES+=\
	s2ram.h s2ram.c \
	whitelist.h whitelist.csv whitelist.c \
	s2ram-x86.h s2ram-x86.c \
	dmidecode.c \
	radeontool.c \
	vbetool/vbetool.h vbetool/vbetool.c
AM_CFLAGS+=\
	$(LIBX86_CFLAGS) \
	$(LIBPCI_CFLAGS)
common_s2ram_libs+=\
	$(LIBX86_LIBS) \
	$(LIBPCI_LIBS)
endif
if ARCH_PPC
libsuspend_common_a_SOURCES+=\
	s2ram.h s2ram.c \
	whitelist.h whitelist.csv whitelist.c \
	s2ram-ppc.h s2ram-ppc.c
endif

resume_CFLAGS=\
	$(AM_CFLAGS) \
	-D_GNU_SOURCE
resume_SOURCES=\
	resume.c
resume_LDADD=\
	libsuspend-common.a \
	$(common_s2disk_libs)
if ENABLE_RESUME_STATIC
resume_LDFLAGS=\
	$(AM_LDFLAGS) \
	-all-static
endif

s2disk_SOURCES=\
	suspend.c
s2disk_LDADD=\
	libsuspend-common.a \
	$(common_s2disk_libs)

s2both_SOURCES=\
	suspend.c
s2both_CFLAGS=\
	$(AM_CFLAGS) \
	-DCONFIG_BOTH
s2both_LDADD=\
	libsuspend-common.a \
	$(common_s2ram_libs) \
	$(common_s2disk_libs)

s2ram_SOURCES=\
	s2ram-main.c
s2ram_LDADD=\
	libsuspend-common.a \
	$(common_s2ram_libs)

swap_offset_SOURCES=\
	swap-offset.c

suspend_keygen_SOURCES=\
	keygen.c
suspend_keygen_LDADD=\
	libsuspend-common.a \
	$(LIBGCRYPT_LIBS)

fbsplash_test_SOURCES=\
	fbsplash_funcs.c \
	fbsplash-test.c
fbsplash_test_LDADD=\
	$(FBSPLASH_LIBS)

whitelist.c: whitelist.csv
	$(PERL) wlcsv2c.pl whitelist.csv whitelist.c

clean-local:
	rm -f whitelist.c

#
# Misc functions
#
install-resume-new-initrd:      resume
	@if test -z "$(RESUME_DEVICE)"; then \
		echo "Please specify --with-resume-device"; \
		false; \
	else \
		BOOT_DIR=$(DESTDIR)$(bootdir) ./scripts/create-resume-initrd.sh $(RESUME_DEVICE); \
	fi

install-resume-on-initrd:       resume
	BOOT_DIR=$(DESTDIR)$(bootdir) ./scripts/install-resume.sh