Files
avrdude/Makefile
Brian S. Dean 52ae174073 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
2000-08-05 05:12:50 +00:00

17 lines
159 B
Makefile

#
# $Id$
#
TARGET = avrprog
all : ${TARGET}
CFLAGS = -Wall
${TARGET} : avrprog.c
${CC} ${CFLAGS} -o ${TARGET} avrprog.c
clean :
rm -f *.o ${TARGET} *~