diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-10-18 21:15:32 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-10-18 21:15:32 +0000 |
commit | 6648562b330658602c0be13935c1d2bc5f024bc5 (patch) | |
tree | 62dbf8be0f08b142f072b55dbe0238ef6d4a66f3 | |
parent | 768f982ca08845aa8748bd6592ea90fc40fa3aca (diff) |
Commit first Makefile.in as example how the new infrastructure is intended to be used
-rw-r--r-- | libcrypt/Makefile.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libcrypt/Makefile.in b/libcrypt/Makefile.in new file mode 100644 index 000000000..e1fb34f93 --- /dev/null +++ b/libcrypt/Makefile.in @@ -0,0 +1,13 @@ +# Makefile for uClibc +# +# Copyright (C) 2002-2003 Erik Andersen <andersen@uclibc.org> +# +# Licensed under LGPL v2.1, see the file COPYING.LIB in this tarball for details. +# + +CFLAGS+=$(SSP_ALL_CFLAGS) + +LIB_NAME:=libcrypt +srcdir=$(top_srcdir)$(LIB_NAME) +include $(top_srcdir)Makefile.libs +include $(top_srcdir)Makerules |