Magellan Linux

Annotation of /trunk/initscripts/systemd/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1391 - (hide annotations) (download)
Sat Jun 4 23:56:04 2011 UTC (12 years, 11 months ago) by niro
File size: 408 byte(s)
-make use of Makefile.inc and renamed install target to install_systemd
1 niro 1384 # $Id$
2    
3     all:
4    
5 niro 1391 include ../Makefile.inc
6 niro 1384
7 niro 1391 install_systemd: general
8 niro 1384 # install system-units
9 niro 1391 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 niro 1384 # install network script
13 niro 1391 install -m 0755 units/scripts/network.sh $(DESTDIR)$(SYSTEMDDIR)/magellan-network
14 niro 1384
15 niro 1391 .PHONY: all install_systemd general