Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2914 - (show annotations) (download)
Thu Nov 26 14:15:34 2015 UTC (8 years, 5 months ago) by niro
File size: 497 byte(s)
tagged 'init-0_8_7'
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