Magellan Linux

Contents of /trunk/initscripts/systemd/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1391 - (show annotations) (download)
Sat Jun 4 23:56:04 2011 UTC (12 years, 10 months ago) by niro
File size: 408 byte(s)
-make use of Makefile.inc and renamed install target to install_systemd
1 # $Id$
2
3 all:
4
5 include ../Makefile.inc
6
7 install_systemd: general
8 # install system-units
9 install -d -m 0755 $(DESTDIR)$(SYSTEMDDIR)
10 install -d -m 0755 $(DESTDIR)$(UNITSDIR)
11 for file in units/services/*; do install -m 0644 $${file} $(DESTDIR)$(UNITSDIR)/; done
12 # install network script
13 install -m 0755 units/scripts/network.sh $(DESTDIR)$(SYSTEMDDIR)/magellan-network
14
15 .PHONY: all install_systemd general