-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.in
More file actions
40 lines (36 loc) · 1.68 KB
/
Makefile.in
File metadata and controls
40 lines (36 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
all:
make -C src all
clean:
rm -f src/*.o
rm -f src/*.la
rm -f src/*.lo
rm -Rf src/.libs
distclean:
rm -f src/*.o
rm -f src/*.la
rm -f src/*.lo
rm -Rf src/.libs
rm -f Makefile
rm -f src/Makefile
install:
${INSTALL} -m 0755 -g wheel -o root src/.libs/libdouble-conversion.so.0 @prefix@/lib
${INSTALL} -m 0755 -g wheel -o root src/.libs/libdouble-conversion.so @prefix@/lib
${INSTALL} -m 0755 -g wheel -o root src/.libs/libdouble-conversion.la @prefix@/lib
${INSTALL} -m 0755 -g wheel -o root src/.libs/libdouble-conversion.a @prefix@/lib
mkdir -p @prefix@/include/double-conversion
${INSTALL} -m 0644 -g wheel -o root src/bignum-dtoa.h @prefix@/include/double-conversion/
${INSTALL} -m 0644 -g wheel -o root src/double-conversion.h @prefix@/include/double-conversion/
${INSTALL} -m 0644 -g wheel -o root src/strtod.h @prefix@/include/double-conversion/
${INSTALL} -m 0644 -g wheel -o root src/bignum.h @prefix@/include/double-conversion/
${INSTALL} -m 0644 -g wheel -o root src/fast-dtoa.h @prefix@/include/double-conversion/
${INSTALL} -m 0644 -g wheel -o root src/utils.h @prefix@/include/double-conversion/
${INSTALL} -m 0644 -g wheel -o root src/cached-powers.h @prefix@/include/double-conversion/
${INSTALL} -m 0644 -g wheel -o root src/fixed-dtoa.h @prefix@/include/double-conversion/
${INSTALL} -m 0644 -g wheel -o root src/diy-fp.h @prefix@/include/double-conversion/
${INSTALL} -m 0644 -g wheel -o root src/ieee.h @prefix@/include/double-conversion/
deinstall:
rm -f @prefix@/lib/libdouble-conversion.so.0
rm -f @prefix@/lib/libdouble-conversion.so
rm -f @prefix@/lib/libdouble-conversion.la
rm -f @prefix@/lib/libdouble-conversion.a
rm -Rf @prefix@/include/double-conversion/