c801d85f15
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
33 lines
486 B
Bash
Executable File
33 lines
486 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# create "/gtk" if not present
|
|
if test ! -d gtk; then
|
|
mkdir gtk
|
|
fi
|
|
|
|
# create "/common" if not present
|
|
if test ! -d common; then
|
|
mkdir common
|
|
fi
|
|
|
|
# create "/generic" if not present
|
|
if test ! -d generic; then
|
|
mkdir generic
|
|
fi
|
|
|
|
# create "/png" if not present
|
|
if test ! -d png; then
|
|
mkdir png
|
|
fi
|
|
|
|
# create "/zlib" if not present
|
|
if test ! -d zlib; then
|
|
mkdir zlib
|
|
fi
|
|
|
|
# create "/gdk_imlib" if not present
|
|
if test ! -d gdk_imlib; then
|
|
mkdir gdk_imlib
|
|
fi
|
|
|