/xmlbench/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/xmlbench/trunk

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Suren A. Chilingaryan
  • Date: 2009-02-16 09:27:17 UTC
  • Revision ID: csa@dside.dyndns.org-20090216092717-wipyvaaw2srxhgns
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS= tools xmlgen parse create validate xsl security
 
2
 
 
3
.PHONY: all install clean
 
4
all install clean:
 
5
        @target=`echo $@ | sed s/-recursive//`; \
 
6
        list='$(SUBDIRS)'; \
 
7
        for subdir in $$list; do \
 
8
            echo "Making $$target in $$subdir"; \
 
9
            $(MAKE) -C $$subdir $$target || \
 
10
            exit 1 ; \
 
11
        done