Move crypt.c to src/main. Library functions shouldn't have pthread
[freeradius.git] / src / lib / Makefile
1
2 include ../../Make.inc
3
4 SRCS            = dict.c print.c radius.c valuepair.c token.c misc.c \
5                 log.c filters.c missing.c md4.c md5.c sha1.c \
6                 hmac.c hmacsha1.c snprintf.c isaac.c \
7                 udpfromto.c rbtree.c
8
9 INCLUDES        = ../include/radius.h ../include/libradius.h \
10                   ../include/missing.h ../include/autoconf.h
11
12 CFLAGS          += -D_LIBRADIUS -I../include 
13
14 # if you have problems with things that need SHA1-HMAC, this will
15 # dump the key and the input to the hash so you can compare to what
16 # the other end is doing.
17 CFLAGS += -DHMAC_SHA1_DATA_PROBLEMS
18
19 TARGET=$(LIBPREFIX)radius
20
21 all:    $(TARGET).la
22
23 STATIC_OBJS     = $(SRCS:.c=.o)
24 DYNAMIC_OBJS    = $(SRCS:.c=.lo)
25
26 $(STATIC_OBJS):  $(INCLUDES)
27 $(DYNAMIC_OBJS): $(INCLUDES)
28
29 #######################################################################
30 #
31 # define new rules
32 #
33 #######################################################################
34 %.o : %.c
35         $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c $< -o $@
36
37 %.lo : %.c
38         $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c $<
39
40
41 ifneq ($(USE_SHARED_LIBS),yes)
42 LINK_MODE=-static
43 endif
44
45 $(TARGET).la: $(DYNAMIC_OBJS)
46         $(LIBTOOL) --mode=link $(CC) -release $(RADIUSD_VERSION) \
47         $(LINK_MODE) $(CFLAGS) -o $@ -rpath $(libdir) $^ $(LCRYPT)
48
49 static:
50
51 dynamic: $(TARGET).la
52
53 clean:
54         rm -f *.o *.lo $(TARGET).a $(TARGET).la
55         rm -rf .libs
56
57 install: all
58         $(LIBTOOL) --mode=install $(INSTALL) -c \
59                 $(TARGET).la $(R)$(libdir)/$(TARGET).la;
60         rm -f $(R)$(libdir)/$(TARGET)-$(RADIUSD_VERSION).la;
61         ln -s $(TARGET).la $(R)$(libdir)/$(TARGET)-$(RADIUSD_VERSION).la