f15d9e1fe6
A BSD-licensed implementation of compilation tools (nm, ar, as, ld, etc.) for the ELF object format. This release contains BSD-licensed implementations of the "libdwarf" and "libelf" libraries, and of the "addr2line", "ar", "brandelf", "c++filt", "elfcopy", "elfdump", "findtextrel", "mcs", "nm", "ranlib", "readelf", "size", "strings" and "strip" program development utilities. The release also contains API and utility reference documentation (300+ manual entries in all), and contains test suites for some of these released utilities and libraries. With thanks to jkoshy for all the help.
31 lines
665 B
Text
31 lines
665 B
Text
$NetBSD: patch-am,v 1.1.1.1 2011/11/20 06:25:18 agc Exp $
|
|
|
|
don't build tests for ordinary packaging
|
|
|
|
--- Makefile 2011/11/18 21:53:08 1.1
|
|
+++ Makefile 2011/11/18 21:53:38
|
|
@@ -26,9 +26,9 @@
|
|
SUBDIR += strings
|
|
|
|
# Build the test suites.
|
|
-.if exists(${.CURDIR}/test)
|
|
-SUBDIR += test
|
|
-.endif
|
|
+#.if exists(${.CURDIR}/test)
|
|
+#SUBDIR += test
|
|
+#.endif
|
|
|
|
# Build documentation at the end.
|
|
.if exists(${.CURDIR}/documentation)
|
|
@@ -42,7 +42,7 @@
|
|
#
|
|
|
|
# Run the test suites.
|
|
-.if exists(${.CURDIR}/test)
|
|
-run-tests: all .PHONY
|
|
- (cd ${.CURDIR}/test; ${MAKE} test)
|
|
-.endif
|
|
+#.if exists(${.CURDIR}/test)
|
|
+#run-tests: all .PHONY
|
|
+# (cd ${.CURDIR}/test; ${MAKE} test)
|
|
+#.endif
|