Commit 1dbf7dc2f8f93a662523c3015f6ed3f392e548e3

Ryan C. Gordon 2018-11-04T21:11:07

os2: Do a distclean instead of removing files manually in buildbot script.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/build-scripts/os2-buildbot.sh b/build-scripts/os2-buildbot.sh
index 67c8ce6..a93796c 100755
--- a/build-scripts/os2-buildbot.sh
+++ b/build-scripts/os2-buildbot.sh
@@ -36,7 +36,7 @@ mv SDL2.lib SDL2.dll $ZIPDIR/
 cp -R include $ZIPDIR/
 zip -9r "$ZIPFILE" $ZIPDIR
 
-rm -f *.obj SDL2.exp SDL2.map SDL2.lnk
+wmake -f Makefile.os2 distclean
 
 set +x
 echo "All done. Final installable is in $ZIPFILE ...";