diff options
-rw-r--r-- | libcrypt/Makefile.in | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libcrypt/Makefile.in b/libcrypt/Makefile.in new file mode 100644 index 000000000..4e1466e72 --- /dev/null +++ b/libcrypt/Makefile.in @@ -0,0 +1,27 @@ +# Makefile for uClibc +# +# Copyright (C) 2000 by Lineo, inc. +# Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org> +# +# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. +# + +CFLAGS+=$(SSP_ALL_CFLAGS) + +LIB_NAME:=libcrypt + +libcrypt_DIR:=$(top_srcdir)libcrypt +libcrypt_OUT:=$(top_builddir)libcrypt + +libcrypt_SRC:=$(wildcard $(libcrypt_DIR)/*.c) +libcrypt_OBJ:=$(patsubst $(libcrypt_DIR)/%.c,$(libcrypt_OUT)/%.o,$(libcrypt_SRC)) + +libcrypt-a-y:=$(libcrypt_OBJ) +libcrypt-so-y:=$(libcrypt_OBJ:.o=.os) + +libcrypt-multi-y:=$(libcrypt_SRC) + +objclean-y+=libcrypt_clean + +lib-a-y+=$(top_builddir)lib/libcrypt.a +lib-so-y+=$(top_builddir)lib/libcrypt.so |