Skip to content

Commit

Permalink
xargs -> for
Browse files Browse the repository at this point in the history
git-svn-id: https://slps.svn.sourceforge.net/svnroot/slps@132 ab42f6e0-554d-0410-b580-99e487e6eeb2
  • Loading branch information
grammarware committed Aug 5, 2008
1 parent 910dc12 commit 2030161
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions shared/xsd/Makefile
Expand Up @@ -6,11 +6,13 @@ build:
test:

check:
@echo Attempting validation ...
ls -1 *.xsd | xargs -n1 java -jar ${validator}
@echo Attempting translation to BGF ...
ls -1 *.xsd | xargs -n1 ${viewer} > /dev/null
@echo All Ok
@for file in *.xsd ; \
do \
echo Validating $$file ... ; \
java -jar ${validator} $$file ; \
echo Translating $$file to BGF ... ; \
${viewer} $$file > /dev/null ;\
done

clean:
rm -rf bin obj
Expand Down

0 comments on commit 2030161

Please sign in to comment.