| OLD | NEW |
| 1 ## Process this file with automake to generate Makefile.in | 1 ## Process this file with automake to generate Makefile.in |
| 2 | 2 |
| 3 AUTOMAKE_OPTIONS = 1.11 no-dist foreign | 3 AUTOMAKE_OPTIONS = 1.11 no-dist foreign |
| 4 ACLOCAL_AMFLAGS = -I . -I .. -I ../config | 4 ACLOCAL_AMFLAGS = -I . -I .. -I ../config |
| 5 | 5 |
| 6 # Uncomment the following line when doing a release. | 6 # Uncomment the following line when doing a release. |
| 7 RELEASE=y | 7 # RELEASE=y |
| 8 | 8 |
| 9 INCDIR = $(srcdir)/../include | 9 INCDIR = $(srcdir)/../include |
| 10 CSEARCH = -I. -I$(srcdir) -I$(INCDIR) | 10 CSEARCH = -I. -I$(srcdir) -I$(INCDIR) |
| 11 | 11 |
| 12 SUBDIRS = doc po | 12 SUBDIRS = doc po |
| 13 | 13 |
| 14 bfddocdir = doc | 14 bfddocdir = doc |
| 15 | 15 |
| 16 libbfd_la_LDFLAGS = | 16 libbfd_la_LDFLAGS = |
| 17 if INSTALL_LIBBFD | 17 if INSTALL_LIBBFD |
| (...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 949 bfd_version_date=`sed -n -e 's/.*DATE //p' < $(srcdir)/version.h` ;\ | 949 bfd_version_date=`sed -n -e 's/.*DATE //p' < $(srcdir)/version.h` ;\ |
| 950 bfd_version_string="\"$(VERSION).$${bfd_version_date}\"" ;\ | 950 bfd_version_string="\"$(VERSION).$${bfd_version_date}\"" ;\ |
| 951 bfd_soversion="$(VERSION).$${bfd_version_date}" ;\ | 951 bfd_soversion="$(VERSION).$${bfd_version_date}" ;\ |
| 952 fi ;\ | 952 fi ;\ |
| 953 sed -e "s,@bfd_version@,$$bfd_version," \ | 953 sed -e "s,@bfd_version@,$$bfd_version," \ |
| 954 -e "s,@bfd_version_string@,$$bfd_version_string," \ | 954 -e "s,@bfd_version_string@,$$bfd_version_string," \ |
| 955 -e "s,@bfd_version_package@,$$bfd_version_package," \ | 955 -e "s,@bfd_version_package@,$$bfd_version_package," \ |
| 956 -e "s,@report_bugs_to@,$$report_bugs_to," \ | 956 -e "s,@report_bugs_to@,$$report_bugs_to," \ |
| 957 < $(srcdir)/version.h > $@; \ | 957 < $(srcdir)/version.h > $@; \ |
| 958 echo "$${bfd_soversion}" > libtool-soversion | 958 echo "$${bfd_soversion}" > libtool-soversion |
| OLD | NEW |