10

I am using nmake in VS 2012 console to compile GDAL, I want to know which command could help me to remove all files generated by nmake command last time.

c:\gdal>nmake clean

Microsoft (R) Program Maintenance Utility Version 11.00.60610.1
Copyright (C) Microsoft Corporation.  All rights reserved.

NMAKE : fatal error U1073: don't know how to make 'clean'
Stop.
4

1 回答 1

13

我明白了,在查看了 makefile.vc 之后,里面有一个干净的目标。只需执行以下命令:

nmake /f makefile.vc clean
于 2013-08-08T03:18:36.420 回答