Magellan Linux

Diff of /trunk/mage/Makefile

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2225 by niro, Mon Feb 6 10:02:33 2012 UTC revision 2226 by niro, Wed Oct 16 07:51:30 2013 UTC
# Line 1  Line 1 
1  # Magellan Package Management  # Magellan Package Management
2  # $Header: /home/cvsd/magellan-cvs/magellan-src/mage/Makefile,v 1.3 2007-11-05 19:36:36 niro Exp $  # $Header: /home/cvsd/magellan-cvs/magellan-src/mage/Makefile,v 1.3 2007-11-05 19:36:36 niro Exp $
3    
4  DESTDIR=  DESTDIR =
5  VERSION=$(shell cat VERSION)  VERSION = $(shell cat VERSION)
6  ARCH=$(shell uname -m)  ARCH = $(shell uname -m)
7    
8  ifeq ($(ARCH), x86_64)  ifeq ($(ARCH), x86_64)
9   MTUNE=generic   MTUNE = generic
10  else  else
11   MTUNE=$(ARCH)   MTUNE = $(ARCH)
12  endif  endif
13    
14  sysconfdir=/etc  sysconfdir = /etc
15  libdir=/usr/lib/mage  libdir = /usr/lib/mage
16  sbindir=/sbin  sbindir = /sbin
17  datadir=/usr/share/doc/mage-$(VERSION)  datadir = /usr/share/doc/mage-$(VERSION)
18    
19  srcdir=.  srcdir = .
20  srclib=$(srcdir)/usr/lib/mage  srclib = $(srcdir)/usr/lib/mage
21  srcdoc=$(srcdir)/usr/share/doc/mage  srcdoc = $(srcdir)/usr/share/doc/mage
22  srcetc=$(srcdir)/etc  srcetc = $(srcdir)/etc
23    
24  all: install  all: install
25    

Legend:
Removed from v.2225  
changed lines
  Added in v.2226