Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
/crypt.h
/crypt-hashes.h
/crypt-symbol-vers.h
/crypt-tune-costs
/libcrypt.map
gen-des-tables
test/alg-des
Expand Down
9 changes: 8 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ notrans_dist_man3_MANS = \
doc/crypt_ra.3 \
doc/crypt_rn.3
notrans_dist_man5_MANS = \
doc/crypt.5
doc/crypt.5 \
doc/crypt.conf.5
notrans_dist_man8_MANS = \
doc/crypt-checkconf.8 \
doc/crypt-tune-costs.8

nodist_include_HEADERS = \
crypt.h
Expand Down Expand Up @@ -124,6 +128,9 @@ libcrypt_la_SOURCES = \
lib/crypt.c \
lib/randombytes.c

sbin_PROGRAMS = crypt-tune-costs
crypt_tune_costs_LDADD = libcrypt.la -lm

pkgconfig_DATA = libxcrypt.pc

# Install libcrypt.pc symlink to libxcrypt.pc file.
Expand Down
Loading