[/] [trunk/] [Makefile] -
Diff 62 ⟶ 63
Diff between revs
62
and
63
| Rev 62 |
Rev 63 |
| Line 1... |
Line 1... |
# $Id: Makefile 62 2008-08-20 11:20:33Z tbourke $
|
# $Id: Makefile 63 2008-08-22 06:26:33Z tbourke $
|
|
#
|
|
# Copyright (c) 2008 Timothy Bourke (University of NSW and NICTA)
|
|
# All rights reserved.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
# under the terms of the "BSD License" which is distributed with the
|
|
# software in the file LICENSE.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the BSD
|
|
# License for more details.
|
#
|
#
|
MAKE=make
|
MAKE=make
|
|
|
.include "src/Makefile"
|
.include "src/Makefile"
|
|
|
| Line 10... |
Line 22... |
SRCDIST=urpal-$(URPAL_VERSION)
|
SRCDIST=urpal-$(URPAL_VERSION)
|
|
|
CHECKBIN=readelf -e src/urpal | sed -n -e 's| *OS/ABI: *\(.*\)|\1|p'
|
CHECKBIN=readelf -e src/urpal | sed -n -e 's| *OS/ABI: *\(.*\)|\1|p'
|
SKIPSVN=-type d -name '.svn' -prune -type f -o \! -name .svn -a
|
SKIPSVN=-type d -name '.svn' -prune -type f -o \! -name .svn -a
|
STRIPDOT=sed -ne 's:^\./\(.*\):\1:p'
|
STRIPDOT=sed -ne 's:^\./\(.*\):\1:p'
|
|
|
all:
|
all:
|
make -C ./src
|
(cd src; make)
|
|
|
distfiles: freebsd linux win32 src
|
distfiles: freebsd linux win32 src
|
|
|
freebsd: dist/$(FREEBSD)
|
freebsd: dist/$(FREEBSD)
|
linux: dist/$(LINUX)
|
linux: dist/$(LINUX)
|
linux: dist/$(LINUX)
|
linux: dist/$(LINUX)
|