Move term.[ch] from the library into the CLI application section, as
it is not useful for anything else but the CLI frontend. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@806 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
d32338b5ba
commit
27072552fa
|
@ -1,3 +1,9 @@
|
||||||
|
2009-02-25 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
* Makefile.am: Move term.[ch] from the library into the CLI
|
||||||
|
application section, as it is not useful for anything else but
|
||||||
|
the CLI frontend.
|
||||||
|
|
||||||
2009-02-25 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
2009-02-25 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
* avrdude.conf.in (ATmega1284P): new device.
|
* avrdude.conf.in (ATmega1284P): new device.
|
||||||
|
|
|
@ -133,8 +133,6 @@ libavrdude_a_SOURCES = \
|
||||||
stk500v2_private.h \
|
stk500v2_private.h \
|
||||||
stk500generic.c \
|
stk500generic.c \
|
||||||
stk500generic.h \
|
stk500generic.h \
|
||||||
term.c \
|
|
||||||
term.h \
|
|
||||||
usbasp.c \
|
usbasp.c \
|
||||||
usbasp.h \
|
usbasp.h \
|
||||||
usbdevs.h \
|
usbdevs.h \
|
||||||
|
@ -145,7 +143,9 @@ libavrdude_a_SOURCES = \
|
||||||
update.c
|
update.c
|
||||||
|
|
||||||
avrdude_SOURCES = \
|
avrdude_SOURCES = \
|
||||||
main.c
|
main.c \
|
||||||
|
term.c \
|
||||||
|
term.h
|
||||||
|
|
||||||
man_MANS = avrdude.1
|
man_MANS = avrdude.1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue