source: freewrt/GNUmakefile@ 3ef0a5e

freewrt_1_0 freewrt_2_0
Last change on this file since 3ef0a5e was 93f20e7, checked in by Thorsten Glaser <tg@…>, 19 years ago

we use the httpd redirect here, my bad, this is by design
and actually makes sense

git-svn-id: svn://www.freewrt.org/trunk/freewrt@679 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 470 bytes
Line 
1# $FreeWRT$
2#-
3# This file is part of the FreeWRT project. FreeWRT is copyrighted
4# material, please see the LICENCE file in the top-level directory
5# or at http://www.freewrt.org/licence for details.
6
7TOPDIR:= $(shell pwd)
8PWD:= ${TOPDIR}
9
10ifneq (${package},)
11subdir:= package/${package}
12endif
13
14ifneq (${subdir},)
15${MAKECMDGOALS}: _subdir
16
17_subdir:
18 cd ${subdir} && TOPDIR=${TOPDIR} \
19 ${TOPDIR}/lbin/gmake ${MAKEFLAGS} ${MAKECMDGOALS}
20else
21include Makefile
22endif
Note: See TracBrowser for help on using the repository browser.