diff options
| author | Frank Warmerdam <warmerdam@pobox.com> | 2000-12-15 23:34:01 +0000 |
|---|---|---|
| committer | Frank Warmerdam <warmerdam@pobox.com> | 2000-12-15 23:34:01 +0000 |
| commit | ca0f8d8cec8d7475fe5671b335c3fccfd3c0e72d (patch) | |
| tree | df1e5f7369b70d65fa1a5fc7a1608ac6d284de17 /src/makefile.vc | |
| parent | 353ead389175262dedb5acbbacdad286c4ca0b4b (diff) | |
| download | PROJ-ca0f8d8cec8d7475fe5671b335c3fccfd3c0e72d.tar.gz PROJ-ca0f8d8cec8d7475fe5671b335c3fccfd3c0e72d.zip | |
Made del proj.lib only if proj.lib exists.
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@888 4e78687f-474d-0410-85f9-8d5e500ac6b2
Diffstat (limited to 'src/makefile.vc')
| -rw-r--r-- | src/makefile.vc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile.vc b/src/makefile.vc index cf866557..56b27d55 100644 --- a/src/makefile.vc +++ b/src/makefile.vc @@ -54,7 +54,7 @@ default: proj.lib all: proj.lib proj.dll proj.exe proj.lib: $(LIBOBJ) - del proj.lib + if exist proj.lib del proj.lib lib /out:proj.lib $(LIBOBJ) proj.dll: $(LIBOBJ) |
