12.1.13
by Ted Gould
A whole bunch of icons that are from our previous FUSA patches |
1 |
SUBDIRS = icons |
9.1.9
by Ted Gould
Adding in a bunch of service files. We're hip now. |
2 |
|
3 |
dbus_servicesdir = $(DBUSSERVICEDIR) |
|
9.1.10
by Ted Gould
Oh, stealing the methods used in PolicyKit for building these. I dislike calling sed directly, but the results are fantastic. |
4 |
service_in_files = indicator-status.service.in \ |
5 |
indicator-users.service.in \
|
|
6 |
indicator-session.service.in |
|
7 |
dbus_services_DATA = $(service_in_files:.service.in=.service) |
|
8 |
||
9.1.40
by Ted Gould
Building the service files more correctly. |
9 |
%.service: %.service.in |
10 |
sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@ |
|
11 |
||
12 |
#$(dbus_services_DATA): $(service_in_files) Makefile
|
|
13 |
# sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@
|
|
9.1.10
by Ted Gould
Oh, stealing the methods used in PolicyKit for building these. I dislike calling sed directly, but the results are fantastic. |
14 |
|
15 |
EXTRA_DIST = $(service_in_files) |
|
16 |
||
9.1.16
by Ted Gould
Making sure to clean up the generated service files. Whew. Pass distcheck. |
17 |
CLEANFILES = $(dbus_services_DATA) |