diff options
Diffstat (limited to 'src/auxiliaryFunctions/Makefile')
-rw-r--r-- | src/auxiliaryFunctions/Makefile | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/auxiliaryFunctions/Makefile b/src/auxiliaryFunctions/Makefile index c38a45ed..06db4f70 100644 --- a/src/auxiliaryFunctions/Makefile +++ b/src/auxiliaryFunctions/Makefile @@ -5,14 +5,14 @@ ## Made by Bruno JOFRET <bruno.jofret@inria.fr> ## ## Started on Tue Dec 5 09:19:53 2006 jofret -## Last update Tue Feb 13 17:17:02 2007 jofret +## Last update Wed Feb 14 15:40:48 2007 jofret ## ## Copyright INRIA 2006 ## DIRS = sign \ - find #\ - #isempty #\ + find \ + isempty #\ #isnan #\ #rand #\ #size #\ @@ -20,10 +20,20 @@ DIRS = sign \ all: recure +stdc99: + @for i in $(DIRS); \ + do cd $$i && make STANDARD=-std=c99; \ + result=$$? ; \ + cd .. ;\ + if test $$result -ne 0; then exit 1; fi; \ + done + recure: @for i in $(DIRS); \ do cd $$i && make; \ + result=$$? ; \ cd .. ;\ + if test $$result -ne 0; then exit 1; fi; \ done clean: |