]> git.sur5r.net Git - bacula/bacula/blob - bacula/platforms/gentoo/Makefile.in
Integrate Phil's Makefile patch
[bacula/bacula] / bacula / platforms / gentoo / Makefile.in
1
2 # This file is used as the template to create the
3 # Makefile for the Gentoo specific installation.
4 #
5 #  22 January 2003 -- Kern Sibbald
6 # and corrected for Gentoo by
7 #  Patrick Naubert 25 Jan 2003
8 #
9 #  for Bacula release @VERSION@ (@DATE@) -- @DISTNAME@
10 #
11
12 INSTALL = @INSTALL@
13 INSTALL_PROGRAM = @INSTALL_PROGRAM@
14
15 nothing:
16
17 install: install-autostart
18
19 install-autostart: install-autostart-fd install-autostart-sd install-autostart-dir
20
21         
22 install-autostart-fd:
23         @$(INSTALL) -m 744 bacula-fd $(DESTDIR)/etc/init.d/bacula-fd
24
25
26 install-autostart-sd:
27         @$(INSTALL) -m 744 bacula-sd $(DESTDIR)/etc/init.d/bacula-sd
28
29
30 install-autostart-dir:
31         @$(INSTALL) -m 744 bacula-dir $(DESTDIR)/etc/init.d/bacula-dir
32
33
34 uninstall: uninstall-autostart
35
36 uninstall-autostart: uninstall-autostart-fd uninstall-autostart-sd uninstall-autostart-dir
37
38 uninstall-autostart-fd:
39         @rm -f $(DESTDIR)/etc/init.d/bacula-fd
40
41
42 uninstall-autostart-sd:
43         @rm -f $(DESTDIR)/etc/init.d/bacula-sd
44
45 uninstall-autostart-dir:
46         @rm -f $(DESTDIR)/etc/init.d/bacula-dir
47
48 clean:
49         @rm -f bacula-sd bacula-fd bacula-dir
50
51 distclean: clean
52         @rm -f Makefile 
53         @rm -rf CVS
54
55 devclean: clean
56         @rm -f Makefile 
57