diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-05-12 20:31:43 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-05-12 20:31:43 +0000 |
commit | 1bda73a7b0f45a2502ae93e33e30b98152d893f3 (patch) | |
tree | 7bdf8f59ec2c6443a071a0217f78f8a999596030 /doclean | |
parent | Misc XGUI fixes. (diff) | |
download | openvpn-1bda73a7b0f45a2502ae93e33e30b98152d893f3.tar.xz |
Moved branch into official BETA21 position.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2959 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rwxr-xr-x | doclean | 67 |
1 files changed, 61 insertions, 6 deletions
@@ -1,16 +1,71 @@ #!/bin/sh -# Let's have a fresh start. Remove all files -# which are not source files. +# Let's have a fresh start. Remove all +# generated files. # # Run this script, then: -# touch * -# [apply any patches here] # autoreconf -i -v # ./configure # make # make install -rm -f *.o openvpn config.cache configure Makefile Makefile.in stamp-h* config.guess config.sub depcomp missing mkinstalldirs config.log config.status config.h config.h.in aclocal.m4 openvpn.spec install-sh +rm -f \ + *.o \ + service-win32/*.o \ + service-win32/*.exe \ + *.exe \ + openvpn \ + config.cache \ + configure \ + Makefile \ + Makefile.in \ + stamp-h* \ + config.guess \ + config.sub \ + depcomp \ + missing \ + mkinstalldirs \ + config.log \ + config.status \ + config.h \ + config.h.in \ + aclocal.m4 \ + openvpn.spec \ + install-sh \ + openvpn.8.html \ + config-win32.h \ + install-win32/*.exe \ + install-win32/makensis.log \ + install-win32/settings \ + install-win32/Makefile \ + install-win32/Makefile.in \ + images/Makefile \ + images/Makefile.in \ + service-win32/Makefile \ + service-win32/Makefile.in -rm -rf autom4te*.cache .deps +rm -rf \ + autom4te*.cache \ + .deps \ + */.deps \ + windest \ + autodefs \ + gen \ + tapinstall \ + install-win32/tmp + +rm -rf \ + tap-win32/objfre_w2k_x86 \ + tap-win32/dist \ + tap-win32/SOURCES \ + tap-win32/tapdrvr.cod \ + tap-win32/buildfre_wnet_amd64.wrn \ + tap-win32/buildfre_w2k_x86.wrn \ + tap-win32/objfre_wnet_amd64 \ + tap-win32/buildfre_wnet_amd64.log \ + tap-win32/buildfre_w2k_x86.log \ + tap-win32/amd64 \ + tap-win32/i386/tap0901.pdb \ + tap-win32/i386/OemWin2k.inf \ + tap-win32/i386/tap0901.map \ + tap-win32/i386/tap0901.sys |