git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@443 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
46 lines
708 B
Bash
Executable file
46 lines
708 B
Bash
Executable file
#! /bin/sh
|
|
|
|
# create "/gtk" if not present
|
|
if test ! -d gtk; then
|
|
mkdir gtk
|
|
fi
|
|
|
|
# create "/qt" if not present
|
|
if test ! -d gtk; then
|
|
mkdir gtk
|
|
fi
|
|
|
|
# create "/motif" 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
|
|
|
|
# create "/iodbc" if not present
|
|
if test ! -d iodbc; then
|
|
mkdir iodbc
|
|
fi
|