aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/appl/template/build.xml
blob: b4a5d70009ae506a88d7147cfd7cc49b08053ee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- make multiple targets with antelope -->
<project name="Template Project" basedir="." default="Help">
        <import file="../avr-build.xml"/>

	<target name="template.hex" depends="build-info" description="Hexfiles for Template">
		<avrasm2 projectname="template" mcu="atmega1284p"/>
	</target>

	<target name="template" depends="template.hex" description="Template @ Template mHz">
	        <echo>Uploading Hexfiles for Template</echo>
		<avrdude 
		    type="dragon"
		    mcu="m1284p"
		    flashfile="template.hex"
		    eepromfile="template.eep.hex"
		/>
	</target>
    <target name="compile" depends="template.hex">
    </target>

</project>