Lines 1-42
Link Here
|
1 |
--- Makefile.orig 2014-12-01 13:10:35 UTC |
1 |
--- Makefile.orig 2016-03-08 10:28:02 UTC |
2 |
+++ Makefile |
2 |
+++ Makefile |
3 |
@@ -37,6 +37,16 @@ else |
3 |
@@ -66,8 +66,8 @@ install: all openlibm.pc |
4 |
@-ln -sf libopenlibm.$(SHLIB_EXT).$(SOMAJOR).$(SOMINOR) libopenlibm.$(SHLIB_EXT) |
|
|
5 |
endif |
6 |
|
7 |
+check test: test/test-double test/test-float |
8 |
+ test/test-double |
9 |
+ test/test-float |
10 |
+ |
11 |
+test/test-double: libopenlibm.$(SHLIB_EXT) |
12 |
+ $(MAKE) -C test test-double |
13 |
+ |
14 |
+test/test-float: libopenlibm.$(SHLIB_EXT) |
15 |
+ $(MAKE) -C test test-float |
16 |
+ |
17 |
clean: |
18 |
@for dir in $(SUBDIRS) .; do \ |
19 |
rm -fr $$dir/*.o $$dir/*.a $$dir/*.$(SHLIB_EXT)*; \ |
20 |
@@ -53,15 +63,15 @@ openlibm.pc: openlibm.pc.in Make.inc Mak |
21 |
|
22 |
install: all openlibm.pc |
23 |
mkdir -p $(DESTDIR)$(shlibdir) |
4 |
mkdir -p $(DESTDIR)$(shlibdir) |
24 |
- mkdir -p $(DESTDIR)$(libdir)/pkgconfig |
5 |
mkdir -p $(DESTDIR)$(pkgconfigdir) |
25 |
+ mkdir -p $(DESTDIR)$(pkgconfigdir) |
|
|
26 |
mkdir -p $(DESTDIR)$(includedir)/openlibm |
6 |
mkdir -p $(DESTDIR)$(includedir)/openlibm |
27 |
- cp -a libopenlibm.$(SHLIB_EXT)* $(DESTDIR)$(shlibdir)/ |
7 |
- cp -f -a libopenlibm.$(SHLIB_EXT)* $(DESTDIR)$(shlibdir)/ |
28 |
- cp -a libopenlibm.a $(DESTDIR)$(libdir)/ |
8 |
- cp -f -a libopenlibm.a $(DESTDIR)$(libdir)/ |
29 |
- cp -a src/openlibm.h $(DESTDIR)$(includedir)/ |
9 |
- cp -f -a include/*.h $(DESTDIR)$(includedir)/openlibm |
30 |
- cp -a openlibm.pc $(DESTDIR)$(libdir)/pkgconfig/ |
10 |
- cp -f -a src/*.h $(DESTDIR)$(includedir)/openlibm |
|
|
11 |
- cp -f -a openlibm.pc $(DESTDIR)$(pkgconfigdir)/ |
31 |
+ ${BSD_INSTALL_LIB} libopenlibm.$(SHLIB_EXT)* $(DESTDIR)$(shlibdir)/ |
12 |
+ ${BSD_INSTALL_LIB} libopenlibm.$(SHLIB_EXT)* $(DESTDIR)$(shlibdir)/ |
32 |
+ ${BSD_INSTALL_DATA} libopenlibm.a $(DESTDIR)$(libdir)/ |
13 |
+ ${BSD_INSTALL_DATA} libopenlibm.a $(DESTDIR)$(libdir)/ |
33 |
+ ${BSD_INSTALL_DATA} src/openlibm.h $(DESTDIR)$(includedir)/ |
14 |
+ ${BSD_INSTALL_DATA} include/*.h $(DESTDIR)$(includedir)/openlibm |
|
|
15 |
+ ${BSD_INSTALL_DATA} src/*.h $(DESTDIR)$(includedir)/openlibm |
34 |
+ ${BSD_INSTALL_DATA} openlibm.pc $(DESTDIR)$(pkgconfigdir)/ |
16 |
+ ${BSD_INSTALL_DATA} openlibm.pc $(DESTDIR)$(pkgconfigdir)/ |
35 |
ifneq ($(wildcard $(ARCH)/bsd_asm.h),) |
|
|
36 |
- cp -a $(ARCH)/bsd_asm.h $(DESTDIR)$(includedir)/openlibm/ |
37 |
+ ${BSD_INSTALL_DATA} $(ARCH)/bsd_asm.h $(DESTDIR)$(includedir)/openlibm/ |
38 |
endif |
39 |
ifneq ($(wildcard $(ARCH)/bsd_cdefs.h),) |
40 |
- cp -a $(ARCH)/bsd_cdefs.h $(DESTDIR)$(includedir)/openlibm/ |
41 |
+ ${BSD_INSTALL_DATA} $(ARCH)/bsd_cdefs.h $(DESTDIR)$(includedir)/openlibm/ |
42 |
endif |