Magellan Linux

Contents of /tags/bootstrap-1_10/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1077 - (show annotations) (download)
Mon Jun 28 17:25:04 2010 UTC (13 years, 9 months ago) by niro
File size: 330 byte(s)
tagged 'bootstrap-1_10'
1 # $Id$
2
3 DESTDIR=
4 PREFIX=/usr
5
6 sbindir=$(PREFIX)/sbin
7 srcdir=.
8
9 all: install
10
11 install:
12 install -d -m 0755 $(DESTDIR)$(sbindir)
13 install -m 0755 $(srcdir)/mage-bootstrap.sh $(DESTDIR)$(sbindir)/mage-bootstrap
14 install -m 0755 $(srcdir)/bootstrap-default-system.sh $(DESTDIR)$(sbindir)/bootstrap-default-system
15
16 .PHONY: all install