~ubuntu-branches/ubuntu/maverick/aspectc++/maverick

« back to all changes in this revision

Viewing changes to Puma/tools/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-04-10 17:40:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080410174052-xdnsm7oi8hauyyf1
Tags: 1.0pre4~svn.20080409+dfsg-3
Fix another missing include, this time in Ag++/StdSystem.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
#-------------------------------------------------
4
4
 
5
5
SUBDIRS := $(shell find $(shell pwd) -maxdepth 1 -mindepth 1 -type d)
6
 
SUBDIRS := $(filter-out %/CVS %/scripts, $(SUBDIRS))
 
6
SUBDIRS := $(filter-out %/.svn %/CVS %/scripts, $(SUBDIRS))
7
7
SUBDIRS := $(SUBDIRS)
8
8
 
9
9
ifeq ($(SUBDIRS),)
17
17
define propagate
18
18
        for DIR in $(SUBDIRS); \
19
19
          do cd $$DIR; \
20
 
          $(MAKE) -s $(MAKECMDGOALS); \
 
20
          $(MAKE) $(MAKECMDGOALS); \
21
21
        done
22
22
endef
23
23
 
27
27
# rules
28
28
#-------------------------------------------------
29
29
 
30
 
all clean:
 
30
all:
 
31
        @$(propagate)
 
32
 
 
33
clean:
31
34
        @$(propagate)