File: Makefile.am

package info (click to toggle)
hashalot 0.3-10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 476 kB
  • sloc: ansic: 1,544; sh: 713; makefile: 29
file content (20 lines) | stat: -rw-r--r-- 464 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

bin_PROGRAMS = hashalot

man_MANS = hashalot.1

hashalot_SOURCES = hashalot.c rmd160.c rmd160.h sha512.c sha512.h

install-exec-hook:
	cd $(DESTDIR)$(bindir) && \
	$(LN_S) -f hashalot$(EXEEXT) rmd160$(EXEEXT) && \
	$(LN_S) -f hashalot$(EXEEXT) sha256$(EXEEXT) && \
	$(LN_S) -f hashalot$(EXEEXT) sha384$(EXEEXT) && \
	$(LN_S) -f hashalot$(EXEEXT) sha512$(EXEEXT)

uninstall-hook:
	cd $(DESTDIR)$(sbindir) && \
	rm -f rmd160 sha256 sha384 sha512

TESTS = check.sh