diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-30 00:46:14 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-30 00:46:14 +0000 |
| commit | ca20eab457bce49095e99c01caee81f7fe6cf027 (patch) | |
| tree | e7152f9b9dda7cf1d244eee02f04cfe26482d5fb | |
| parent | 964dbf05e8d60206a94934851ae26853393e9baa (diff) | |
| download | uClibc-alpine-ca20eab457bce49095e99c01caee81f7fe6cf027.tar.bz2 uClibc-alpine-ca20eab457bce49095e99c01caee81f7fe6cf027.tar.xz | |
Copy from trunk.
| -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 |
