### # tests/test_utils/Makefile # Part of the NV Virtual Buffer Library # This library is copyright 2007, 2008 NV Virtual Buffer Library Contributors # This library is licensed under the GNU Lesser General Public Licence. See license.txt which is included with this library, or see # http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html ### TOPDIR=../.. !include $(TOPDIR)\make.opts all: $(OUTDIR)\test_utils.exe cd $(OUTDIR) && .\test_utils.exe $(OUTDIR)\test_utils.exe: test_utils.cpp $(TOPDIR)\base\utils.cpp cl $(CPPFLAGS) $** /link $(LINKERFLAGS) /out:$@ clean: -del *.obj 2>NUL -del *.pdb 2>NUL