mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-09-28 06:55:27 +00:00
avrprog.c: Add license. Document the header a bit better. Add capability to read out and display the device signature bytes. Add capability to power the device from the parallel port. Eliminate debug print facility. Provide 'avr_cmd()' function. When memory locations don't program, generate a newline so that the information is not overwritten and lost. Don't print out the message about needing to specify a file if the user is not requesting an operation that requires the file. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@6 81a1dc3b-b13d-400b-aceb-764788c761c2
24 lines
271 B
Makefile
24 lines
271 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
TARGET = avrprog
|
|
|
|
DEST = ${HOME}/bin/0.${ARCH}
|
|
|
|
all : ${TARGET}
|
|
|
|
CFLAGS = -Wall
|
|
|
|
${TARGET} : avrprog.c
|
|
${CC} ${CFLAGS} -o ${TARGET} avrprog.c
|
|
|
|
clean :
|
|
rm -f *.o ${TARGET} *~
|
|
|
|
install : ${DEST}/${TARGET}
|
|
|
|
${DEST}/${TARGET} : ${TARGET}
|
|
cp -p ${TARGET} $@
|
|
|