[artoolkit-commits] artoolkit/util Makefile.in,1.1.1.1,1.2
Optical marker tracking and overlay for augmented reality.
Brought to you by:
philip_lamb
From: Philip L. <phi...@us...> - 2004-11-22 03:40:12
|
Update of /cvsroot/artoolkit/artoolkit/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25721 Modified Files: Makefile.in Log Message: Added new utils. Index: Makefile.in =================================================================== RCS file: /cvsroot/artoolkit/artoolkit/util/Makefile.in,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.in 4 Nov 2004 08:52:01 -0000 1.1.1.1 --- Makefile.in 22 Nov 2004 03:38:53 -0000 1.2 *************** *** 1,3 **** --- 1,5 ---- all: + (cd graphicsTest; make -f Makefile) + (cd videoTest; make -f Makefile) (cd calib_distortion; make -f Makefile) (cd calib_cparam; make -f Makefile) *************** *** 6,9 **** --- 8,13 ---- clean: + (cd graphicsTest; make -f Makefile clean) + (cd videoTest; make -f Makefile clean) (cd calib_distortion; make -f Makefile clean) (cd calib_cparam; make -f Makefile clean) *************** *** 12,15 **** --- 16,21 ---- allclean: + (cd graphicsTest; make -f Makefile allclean) + (cd videoTest; make -f Makefile allclean) (cd calib_distortion; make -f Makefile allclean) (cd calib_cparam; make -f Makefile allclean) |