Magellan Linux

Contents of /tags/init-0_7_0_1/busybox/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1401 - (show annotations) (download)
Sun Jun 5 00:45:56 2011 UTC (12 years, 11 months ago) by niro
File size: 497 byte(s)
tagged 'init-0_7_0_1'
1 # $Id$
2
3 all:
4
5 include ../Makefile.inc
6
7 install_busybox: general
8 install -d -m 0755 $(DESTDIR)$(RCDIR)
9 install -d -m 0755 $(DESTDIR)$(RCDIR)/rcshutdown.d
10 install -d -m 0755 $(DESTDIR)$(RCDIR)/rcboot.d
11 install -d -m 0755 $(DESTDIR)$(RCDIR)/rcsysinit.d
12
13 install -d -m 0755 $(DESTDIR)$(INITDIR)
14 for file in rc/*; do install -m 0755 $${file} $(DESTDIR)$(INITDIR)/; done
15 # symlink rc.d/init.d to /etc/init.d
16 ln -snf rc.d/init.d $(DESTDIR)$(SYSCONFDIR)/init.d
17
18 .PHONY: all install_busybox general