ebcb40e5e1
port, which is also in sync with winavr/avrstudio. Among other things, this adds support for atmega328... which means new arduino boards should work.
34 lines
956 B
Plaintext
34 lines
956 B
Plaintext
$OpenBSD: patch-bfd_Makefile_in,v 1.4 2010/06/27 20:58:10 ckuethe Exp $
|
|
--- bfd/Makefile.in.orig Sat Jun 26 11:23:54 2010
|
|
+++ bfd/Makefile.in Sat Jun 26 11:31:17 2010
|
|
@@ -524,6 +524,8 @@ BFD32_BACKENDS = \
|
|
coff-apollo.lo \
|
|
coff-arm.lo \
|
|
coff-aux.lo \
|
|
+ coff-avr.lo \
|
|
+ coff-ext-avr.lo \
|
|
coff-go32.lo \
|
|
coff-h8300.lo \
|
|
coff-h8500.lo \
|
|
@@ -707,6 +709,8 @@ BFD32_BACKENDS_CFILES = \
|
|
coff-apollo.c \
|
|
coff-arm.c \
|
|
coff-aux.c \
|
|
+ coff-avr.c \
|
|
+ coff-ext-avr.c \
|
|
coff-go32.c \
|
|
coff-h8300.c \
|
|
coff-h8500.c \
|
|
@@ -1673,8 +1677,9 @@ installdirs-am:
|
|
for dir in "$(DESTDIR)$(bfdlibdir)" "$(DESTDIR)$(bfdincludedir)"; do \
|
|
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
|
done
|
|
-install: $(BUILT_SOURCES)
|
|
- $(MAKE) $(AM_MAKEFLAGS) install-recursive
|
|
+#install: $(BUILT_SOURCES)
|
|
+# $(MAKE) $(AM_MAKEFLAGS) install-recursive
|
|
+install:
|
|
install-exec: install-exec-recursive
|
|
install-data: install-data-recursive
|
|
uninstall: uninstall-recursive
|