Hi, I have an automake file with rules for a lib like this:
__install_dir = $(prefix)/avr/lib/$(AVR_INSTALL_DIR)
avrdir = $(__install_dir)
avrlibdir = $(__install_dir)
avr_LIBRARIES = libdev.a
nodist_libdev_a_SOURCES = ...
What would be the recommended way to install libdev.a also in several
On Tue, 10 Dec 2019, Georg-Johann Lay wrote:
Hi, I have an automake file with rules for a lib like this:
__install_dir = $(prefix)/avr/lib/$(AVR_INSTALL_DIR)
avrdir = $(__install_dir)
avrlibdir = $(__install_dir)
avr_LIBRARIES = libdev.a
nodist_libdev_a_SOURCES = ...
What would be the recomm
Bob Friesenhahn schrieb:
On Tue, 10 Dec 2019, Georg-Johann Lay wrote:
Hi, I have an automake file with rules for a lib like this:
__install_dir = $(prefix)/avr/lib/$(AVR_INSTALL_DIR)
avrdir = $(__install_dir)
avrlibdir = $(__install_dir)
avr_LIBRARIES = libdev.a
nodist_libdev_a_SOURCES = ...
On Tue, 10 Dec 2019, Georg-Johann Lay wrote:
Hi, thanks. That was fast!
avrfoo_LIBRARIES = libfoo.a
avrbar_LIBRARIES = libbar.a
Will this also work with same file names? Like
avrfoo_LIBRARIES = libfoo.a
avrbar_LIBRARIES = libfoo.a
or would that confuse the tools?
I am not sure. I wou