Update of /cvsroot/csdopenglnet/csdOpenGL
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv412
Modified Files:
Makefile
Log Message:
samples are now not compiled with "make all" but with "make test"
Index: Makefile
===================================================================
RCS file: /cvsroot/csdopenglnet/csdOpenGL/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Makefile 13 Jul 2004 19:04:33 -0000 1.2
--- Makefile 19 Jul 2004 16:45:37 -0000 1.3
***************
*** 5,13 ****
$(MAKE) -C math
$(MAKE) -C tools
- $(MAKE) -C samples
doc:
$(MAKE) -C doc
install:
$(MAKE) -C generator install
--- 5,16 ----
$(MAKE) -C math
$(MAKE) -C tools
doc:
$(MAKE) -C doc
+ test: all
+ $(MAKE) -C samples
+
+
install:
$(MAKE) -C generator install
|