~ubuntu-branches/ubuntu/edgy/freeradius/edgy-updates

« back to all changes in this revision

Viewing changes to src/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Jeremie Corbier
  • Date: 2006-07-08 19:41:05 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060708194105-2dabtaxd16o7p90g
Tags: 1.1.2-2ubuntu1
* Merge from debian unstable.
* Remove previous patches merged upstream:
  - 14_freeradius-dictionary-fix.dpatch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
2
# Makefile
3
3
#
4
 
# Version:      $Id: Makefile,v 1.7.2.1 2005/04/11 21:18:28 aland Exp $
 
4
# Version:      $Id: Makefile,v 1.7.2.1.2.1 2006/05/25 16:24:40 nbk Exp $
5
5
#
6
6
 
7
7
include ../Make.inc
22
22
common:
23
23
        @for dir in $(SUBDIRS); do \
24
24
                echo "Making $(WHAT_TO_MAKE) in $$dir..."; \
25
 
                (cd $$dir && $(MAKE) $(MFLAGS) $(WHAT_TO_MAKE)) || exit $?;\
 
25
                $(MAKE) $(MFLAGS) -C $$dir $(WHAT_TO_MAKE) || exit $$?; \
26
26
        done
27