14 lines
386 B
Bash
Executable File
14 lines
386 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
|
|
# Can never be too certain ...
|
|
# Compile tools for wmake
|
|
( cd "${WM_DIR:-${WM_PROJECT_DIR}/wmake}/src" && ./Allmake )
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
wmake libso dummy
|
|
wmake
|
|
|
|
#------------------------------------------------------------------------------
|