Magellan Linux

Diff of /tags/mage-0_4_114/Makefile

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

revision 1678 by niro, Mon Feb 6 10:02:33 2012 UTC revision 2227 by niro, Wed Oct 16 07:52:18 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=  VERSION = $(shell cat VERSION)
5  VERSION=$(shell cat VERSION)  ARCH = $(shell uname -m)
 ARCH=$(shell uname -m)  
6    
7  ifeq ($(ARCH), x86_64)  ifeq ($(ARCH), x86_64)
8   MTUNE=generic   MTUNE = generic
9  else  else
10   MTUNE=$(ARCH)   MTUNE = $(ARCH)
11  endif  endif
12    
13  sysconfdir=/etc  sysconfdir = /etc
14  libdir=/usr/lib/mage  libdir = /usr/lib/mage
15  sbindir=/sbin  sbindir = /sbin
16  datadir=/usr/share/doc/mage-$(VERSION)  datadir = /usr/share/doc/mage-$(VERSION)
17    
18  srcdir=.  srcdir = .
19  srclib=$(srcdir)/usr/lib/mage  srclib = $(srcdir)/usr/lib/mage
20  srcdoc=$(srcdir)/usr/share/doc/mage  srcdoc = $(srcdir)/usr/share/doc/mage
21  srcetc=$(srcdir)/etc  srcetc = $(srcdir)/etc
22    
23  all: install  all: install
24    

Legend:
Removed from v.1678  
changed lines
  Added in v.2227