mirror of https://github.com/CGAL/cgal
Added examples/GNUmakefile and demo/GNUmakefile
This commit is contained in:
parent
87b0b19a76
commit
c96233f3e4
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
|
@ -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
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue