OSDN Git Service

497e5307c4b425b987526ad9e1b1fae3947de54e
[uclinux-h8/uClibc.git] / libcrypt / Makefile
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000 by Lineo, inc.
4 # Copyright (C) 2000-2002 Erik Andersen <andersen@uclibc.org>
5 #
6 # This program is free software; you can redistribute it and/or modify it under
7 # the terms of the GNU Library General Public License as published by the Free
8 # Software Foundation; either version 2 of the License, or (at your option) any
9 # later version.
10 #
11 # This program is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
14 # details.
15 #
16 # You should have received a copy of the GNU Library General Public License
17 # along with this program; if not, write to the Free Software Foundation, Inc.,
18 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #
20 # Derived in part from the Linux-8086 C library, the GNU C Library, and several
21 # other sundry sources.  Files within this library are copyright by their
22 # respective copyright holders.
23
24 TOPDIR=../
25 include $(TOPDIR)Rules.mak
26
27 CFLAGS+=$(SSP_ALL_CFLAGS)
28
29 LIBCRYPT=libcrypt.a
30 LIBCRYPT_SHARED=libcrypt.so
31 LIBCRYPT_SHARED_FULLNAME=libcrypt-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
32
33 CSRC = crypt.c des.c md5.c
34 OBJS=$(patsubst %.c,%.o, $(CSRC))
35
36 all: $(OBJS) $(LIBCRYPT)
37
38 $(LIBCRYPT): ar-target
39
40 ar-target: $(OBJS)
41         $(AR) $(ARFLAGS) $(LIBCRYPT) $(OBJS)
42         $(INSTALL) -d $(TOPDIR)lib
43         $(RM) $(TOPDIR)lib/$(LIBCRYPT)
44         $(INSTALL) -m 644 $(LIBCRYPT) $(TOPDIR)lib
45
46 $(OBJS): %.o : %.c
47         $(CC) $(CFLAGS) -c $< -o $@
48         $(STRIPTOOL) -x -R .note -R .comment $*.o
49
50 $(OBJ): Makefile
51
52 shared: all
53         $(LD) $(LDFLAGS) -soname=$(LIBCRYPT_SHARED).$(MAJOR_VERSION) \
54                 -o $(LIBCRYPT_SHARED_FULLNAME) --whole-archive $(LIBCRYPT) \
55                 --no-whole-archive $(TOPDIR)libc/misc/internals/interp.o \
56                 -L$(TOPDIR)lib -lc $(LDADD_LIBFLOAT) $(LIBGCC);
57         $(INSTALL) -d $(TOPDIR)lib
58         $(RM) $(TOPDIR)lib/$(LIBCRYPT_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBCRYPT_SHARED).$(MAJOR_VERSION)
59         $(INSTALL) -m 644 $(LIBCRYPT_SHARED_FULLNAME) $(TOPDIR)lib;
60         $(LN) -sf $(LIBCRYPT_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBCRYPT_SHARED)
61         $(LN) -sf $(LIBCRYPT_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBCRYPT_SHARED).$(MAJOR_VERSION)
62
63 clean: 
64         $(RM) *.[oa] *~ core $(LIBCRYPT_SHARED)* $(LIBCRYPT_SHARED_FULLNAME)*