Magellan Linux

Annotation of /tags/bootstrap-1_9/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 837 - (hide annotations) (download)
Sun May 3 17:18:46 2009 UTC (15 years ago) by niro
Original Path: trunk/bootstrap/Makefile
File size: 330 byte(s)
-added a Makefile
1 niro 837 # $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