view build-debug.sh @ 96:301e077da540

Add the beginnings of a Windows Uniscribe text backend.
author Jordan Miner <jminer7@gmail.com>
date Wed, 02 May 2012 03:19:00 -0500
parents 592f7aa40bf1
children
line wrap: on
line source

#!/bin/bash

source ./build-paths.sh

ARGS="-DCPATH$DMD_DIR/bin -T$OUT_FILE -full -clean -op"
MODE_ARGS="-debug -g -unittest"

echo $BUD_DIR/bud $MAIN_FILE $ARGS $MODE_ARGS

$BUD_DIR/bud $MAIN_FILE $ARGS $MODE_ARGS

# have to call bud twice...
# the first time to compile, using the -op switch
# the second time to build docs, without the -op switch

echo $BUD_DIR/bud $MAIN_FILE -obj -o- -D -Dd$PWD/docs

$BUD_DIR/bud $MAIN_FILE -obj -o- -D -Dd$PWD/docs