annotate Makefile @ 10:eb1faf51968e

- Add some useful return values to search functions. - Remove some unecessary trailing \'s in macros - Replace some inline assembly I missed last time with C/macros.
author darius
date Mon, 12 Jul 2004 23:59:00 +0930
parents 7ed10c59ba06
children a9d493261c6c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
288d801a47ff Use nicer build framework.
darius
parents: 0
diff changeset
1 PROG=testavr
288d801a47ff Use nicer build framework.
darius
parents: 0
diff changeset
2 SRCS=1wire.c testavr.c
0
ffeab3c04e83 Initial revision
darius
parents:
diff changeset
3
3
ee3c9a16099e - Specify the part number.
darius
parents: 2
diff changeset
4 PART=8515
9
7ed10c59ba06 Supply clock speed via the command line so 1wire-delay.h can use it.
darius
parents: 3
diff changeset
5 CFLAGS=-Os -g -Wall -DXTAL_CPU=4000000
0
ffeab3c04e83 Initial revision
darius
parents:
diff changeset
6
2
288d801a47ff Use nicer build framework.
darius
parents: 0
diff changeset
7 .include "Makefile.avr"