File: Makefile.am

package info (click to toggle)
disk-manager 1.0.1-5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,764 kB
  • ctags: 439
  • sloc: python: 3,373; sh: 3,282; makefile: 119
file content (40 lines) | stat: -rw-r--r-- 1,019 bytes parent folder | download
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
## Process this file with automake to produce Makefile.in

SUBDIRS = icons

if ENABLE_PAM
    SUBDIRS += pam
endif

install-data-local:

@INTLTOOL_DESKTOP_RULE@

desktopdir = $(datadir)/applications
desktop_in_files = disk-manager.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
CLEANFILES = $(desktop_DATA)
EXTRA_DIST = $(desktop_in_files)

autostartdir = $(sysconfdir)/xdg/autostart
autostart_in_files = disk-manager-check.desktop.in
autostart_DATA = $(autostart_in_files:.desktop.in=.desktop)
CLEANFILES += $(autostart_DATA)
EXTRA_DIST += $(autostart_in_files)

pkgdata_DATA = disk-manager.glade \
               write-policy.fdi \
               ro-policy.fdi
EXTRA_DIST += $(pkgdata_DATA)

man_MANS = \
    disk-manager.8 \
    disk-manager-root.8

EXTRA_DIST += $(man_MANS)

## Remove any fdi rule that could have been created by the program
uninstall-hook:
	rm -f $(DESTDIR)/etc/hal/fdi/policy/20-ntfs-config-write-policy.fdi
	rm -f $(DESTDIR)/etc/hal/fdi/policy/20-ntfs-config-ro-policy.fdi