This commit was generated by cvs2svn to compensate for changes in r2,

which included commits to RCS files with non-trunk default branches.


git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@3 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
Brian S. Dean
2000-08-05 05:12:50 +00:00
commit 52ae174073
2 changed files with 732 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
#
# $Id$
#
TARGET = avrprog
all : ${TARGET}
CFLAGS = -Wall
${TARGET} : avrprog.c
${CC} ${CFLAGS} -o ${TARGET} avrprog.c
clean :
rm -f *.o ${TARGET} *~