blob: c2d02d64fcadcfeff9fbb8ece826528aa6fbc28b (
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
|
## We require new-style dependency handling.
AUTOMAKE_OPTIONS = 1.7
NULL =
SUBDIRS = \
tests \
$(NULL)
servicedir = $(DBUS_SERVICES_DIR)
service_in_files = org.freedesktop.PackageKit.service.in
service_DATA = $(service_in_files:.service.in=.service)
$(service_DATA): $(service_in_files) Makefile
@sed -e "s|\@servicedir\@|$(sbindir)|" $< > $@
localcachedir = $(localstatedir)/run/PackageKit
localcache_DATA = \
job_count.dat \
$(NULL)
databasedir = $(PK_DB_DIR)
database_DATA = \
transactions.db \
$(NULL)
EXTRA_DIST = \
$(service_in_files) \
$(localcache_DATA) \
$(database_DATA) \
$(NULL)
clean-local:
rm -f *~
DISTCLEANFILES = \
org.freedesktop.PackageKit.service
MAINTAINERCLEANFILES = \
*~ \
Makefile.in \
$(NULL)
|