BusyB: Multiple Commands


Introduction

News

Reference

Installation

Quick Start

Download

If it takes more than one command to build your project, no problem! Just list the commands in the order they need to be executed in the BusyB project file. Going back to our simple example, perhaps we would like to do a "make clean" before rebuilding our software:

<?xml version="1.0" encoding="UTF-8"?>

<project>
  <description>ClanRuby Test Project</description>

  <logDir>/tmp/buildlogs</logDir>

  <once/>
  <build>

    <dir>/usr/fred/test/src</dir>
    <step>
      <cmd>make clean</cmd>
    </step>
    <step>
      <cmd>make</cmd>
    </step>

  </build>

</project>