83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
genhtml nano-coverage.info --output-directory coverage.dir
rm -f nano-coverage.info
endif
install: @EXTENSION_TARGET@ @srcdir@/bin/node @srcdir@/bin/rpc-client pkgIndex.tcl @srcdir@/nano.man
$(INSTALL) -d '$(DESTDIR)$(PACKAGE_INSTALL_DIR)'
$(INSTALL) -d '$(DESTDIR)$(PACKAGE_INSTALL_DIR)/bin'
$(INSTALL_PROGRAM) @EXTENSION_TARGET@ '$(DESTDIR)$(PACKAGE_INSTALL_DIR)'
$(INSTALL_PROGRAM) @srcdir@/bin/node '$(DESTDIR)$(PACKAGE_INSTALL_DIR)/bin'
$(INSTALL_PROGRAM) @srcdir@/bin/rpc-client '$(DESTDIR)$(PACKAGE_INSTALL_DIR)/bin'
$(INSTALL_DATA) pkgIndex.tcl '$(DESTDIR)$(PACKAGE_INSTALL_DIR)'
$(INSTALL_DATA) @srcdir@/nano.man '$(DESTDIR)$(PACKAGE_INSTALL_DIR)'
clean:
rm -f nano-amalgamation.c nano-amalgamation.o
rm -f @EXTENSION_TARGET@ nano.o nano.gcda nano.gcno
rm -f argon2.o monocypher.o aes.o randombytes.o
rm -f argon2.gcda monocypher.gcda aes.gcda randombytes.gcda
rm -f argon2.gcno monocypher.gcno aes.gcno randombytes.gcno
|
>
|
|
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
genhtml nano-coverage.info --output-directory coverage.dir
rm -f nano-coverage.info
endif
install: @EXTENSION_TARGET@ @srcdir@/bin/node @srcdir@/bin/rpc-client pkgIndex.tcl @srcdir@/nano.man
$(INSTALL) -d '$(DESTDIR)$(PACKAGE_INSTALL_DIR)'
$(INSTALL) -d '$(DESTDIR)$(PACKAGE_INSTALL_DIR)/bin'
$(INSTALL) -d '$(DESTDIR)$(PACKAGE_INSTALL_DIR)/man'
$(INSTALL_PROGRAM) @EXTENSION_TARGET@ '$(DESTDIR)$(PACKAGE_INSTALL_DIR)'
$(INSTALL_PROGRAM) @srcdir@/bin/node '$(DESTDIR)$(PACKAGE_INSTALL_DIR)/bin'
$(INSTALL_PROGRAM) @srcdir@/bin/rpc-client '$(DESTDIR)$(PACKAGE_INSTALL_DIR)/bin'
$(INSTALL_DATA) pkgIndex.tcl '$(DESTDIR)$(PACKAGE_INSTALL_DIR)'
$(INSTALL_DATA) @srcdir@/nano.man '$(DESTDIR)$(PACKAGE_INSTALL_DIR)/man'
clean:
rm -f nano-amalgamation.c nano-amalgamation.o
rm -f @EXTENSION_TARGET@ nano.o nano.gcda nano.gcno
rm -f argon2.o monocypher.o aes.o randombytes.o
rm -f argon2.gcda monocypher.gcda aes.gcda randombytes.gcda
rm -f argon2.gcno monocypher.gcno aes.gcno randombytes.gcno
|