Added examples/GNUmakefile and demo/GNUmakefile

This commit is contained in:
Joachim Reichel 2006-05-17 12:17:33 +00:00
parent 87b0b19a76
commit c96233f3e4
4 changed files with 37 additions and 0 deletions

2
.gitattributes vendored
View File

@ -413,6 +413,8 @@ Installation/config/support/S96-TAUCSDARWIN -text
Installation/config/support/S97-TAUCSFREEBSDATLAS -text
Installation/config/support/S98-TAUCSIRIX32 -text
Installation/config/support/S99-TAUCSIRIX64 -text
Installation/demo/GNUmakefile -text
Installation/examples/GNUmakefile -text
Interpolation/doc_tex/Interpolation/nn_coords.eps -text
Interpolation/doc_tex/Interpolation/nn_coords.gif -text svneol=unset#unset
Interpolation/doc_tex/Interpolation/nn_coords.ipe -text

View File

@ -1,3 +1,6 @@
17 May 2006 Joachim Reichel
- examples/GNUmakefile and demo/GNUmakefile added
13 April 2006 Laurent Rineau
- make lib_menu exit if the setup is not correct, in non-interactive mode.

View File

@ -0,0 +1,16 @@
all:
@for DIR in *; do \
if test "x$$DIR" != xGNUmakefile; then \
$(MAKE) -C $$DIR; \
fi; \
done
clean:
@for DIR in *; do \
if test "x$$DIR" != xGNUmakefile; then \
$(MAKE) -C $$DIR; \
fi; \
done

View File

@ -0,0 +1,16 @@
all:
@for DIR in *; do \
if test "x$$DIR" != xGNUmakefile; then \
$(MAKE) -C $$DIR; \
fi; \
done
clean:
@for DIR in *; do \
if test "x$$DIR" != xGNUmakefile; then \
$(MAKE) -C $$DIR; \
fi; \
done