| Index: Makefile.am
 | 
| diff --git a/Makefile.am b/Makefile.am
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..5b625bad7408fa466110c4b659223bd8138c821e
 | 
| --- /dev/null
 | 
| +++ b/Makefile.am
 | 
| @@ -0,0 +1,16 @@
 | 
| +lib_LTLIBRARIES = libscrypt.la
 | 
| +libscrypt_la_SOURCES = src/lib/util/memlimit.c \
 | 
| +		       src/lib/util/readpass.c \
 | 
| +		       src/lib/util/warn.c \
 | 
| +		       src/lib/scryptenc/scryptenc.c \
 | 
| +		       src/lib/scryptenc/scryptenc_cpuperf.c \
 | 
| +		       src/lib/crypto/crypto_scrypt-ref.c \
 | 
| +		       src/lib/crypto/sha256.c \
 | 
| +		       src/lib/crypto/crypto_aesctr.c
 | 
| +libscrypt_la_CPPFLAGS = -I src/lib/util -I src/lib/scryptenc -I src/lib/crypto \
 | 
| +			-I src -fvisibility=hidden
 | 
| +libscrypt_la_LDFLAGS = -release 1.1.6
 | 
| +
 | 
| +# TODO(fes): auto-set sse/nosse/ref
 | 
| +#		       src/lib/crypto/crypto_scrypt-nosse.c
 | 
| +#		       src/lib/crypto/crypto_scrypt-sse.c
 | 
| 
 |