Skip to content

Commit

Permalink
Ant build: select dos by target
Browse files Browse the repository at this point in the history
And now actually use the attribute values.
  • Loading branch information
stefandrissen committed Nov 7, 2021
1 parent 75c1d45 commit 89a4db6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@
<exec executable="${python}" failonerror="true">
<arg file="${pyz80}" />

<arg line="-I res/dos/samdos2" if:true="samdos" />
<arg line="-I res/dos/MDOS23" if:true="masterdos" />
<arg line="-I res/dos/B-DOS15a" if:true="b-bdos" />
<arg line="-I res/dos/AL-BDOS15a" if:true="b-dos-atom-lite" />
<arg line="-I res/dos/bdos15t-6" if:true="b-dos-trinity" />
<arg line="-I res/dos/samdos2" if:true="@{samdos}" />
<arg line="-I res/dos/MDOS23" if:true="@{masterdos}" />
<arg line="-I res/dos/B-DOS15a" if:true="@{b-dos}" />
<arg line="-I res/dos/AL-BDOS15a" if:true="@{b-dos-atom-lite}" />
<arg line="-I res/dos/bdos15t-6" if:true="@{b-dos-trinity}" />

<arg line="-I res/loading.$" />
<arg line="-I obj/sequencer" />
Expand Down Expand Up @@ -117,7 +117,7 @@

<target name="all (b-dos)" description="compile all, create disk and launch">

<create-disk samdos="true" />
<create-disk b-dos="true" />

<simcoupe disk="modplayer" />

Expand Down

0 comments on commit 89a4db6

Please sign in to comment.