Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
michael@0 | 1 | # |
michael@0 | 2 | # Copyright 2005 Sun Microsystems, Inc. All rights reserved. |
michael@0 | 3 | # Use is subject to license terms. |
michael@0 | 4 | # |
michael@0 | 5 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 6 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 7 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 8 | # |
michael@0 | 9 | #ident "$Id$" |
michael@0 | 10 | # |
michael@0 | 11 | |
michael@0 | 12 | MACH = $(shell mach) |
michael@0 | 13 | |
michael@0 | 14 | PUBLISH_ROOT = $(DIST) |
michael@0 | 15 | ifeq ($(MOD_DEPTH),../..) |
michael@0 | 16 | ROOT = ROOT |
michael@0 | 17 | else |
michael@0 | 18 | ROOT = $(subst ../../,,$(MOD_DEPTH))/ROOT |
michael@0 | 19 | endif |
michael@0 | 20 | |
michael@0 | 21 | PKGARCHIVE = $(dist_prefix)/pkgarchive |
michael@0 | 22 | DATAFILES = copyright |
michael@0 | 23 | FILES = $(DATAFILES) pkginfo |
michael@0 | 24 | |
michael@0 | 25 | PACKAGE = $(shell basename `pwd`) |
michael@0 | 26 | |
michael@0 | 27 | PRODUCT_VERSION = "$(MOD_VERSION).$(MOD_MINOR).$(MOD_PATCH)$(MOD_BETA)" |
michael@0 | 28 | LN = /usr/bin/ln |
michael@0 | 29 | |
michael@0 | 30 | CLOBBERFILES = $(FILES) |
michael@0 | 31 | |
michael@0 | 32 | include $(topsrcdir)/config/rules.mk |
michael@0 | 33 | |
michael@0 | 34 | # vim: ft=make |