mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
cac3ea1e92
Modified for OpenLDAP use by Daniel J. Gregor <djg@gregor.com>.
63 lines
1.5 KiB
Plaintext
63 lines
1.5 KiB
Plaintext
#-----------------------------------------------------------------------------
|
|
# Copyright (c) 1995 Regents of the University of Michigan.
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms are permitted
|
|
# provided that this notice is preserved and that due credit is given
|
|
# to the University of Michigan at Ann Arbor. The name of the University
|
|
# may not be used to endorse or promote products derived from this
|
|
# software without specific prior written permission. This software
|
|
# is provided ``as is'' without express or implied warranty.
|
|
#
|
|
# lutil library makefile
|
|
#
|
|
#-----------------------------------------------------------------------------
|
|
|
|
LDAPSRC = ../..
|
|
|
|
SRCS = base64.c md5.c sha1.c
|
|
OBJS = base64.o md5.o sha1.o
|
|
|
|
HDIR = ../../include
|
|
|
|
INCLUDES= -I$(HDIR)
|
|
DEFINES = $(DEFS)
|
|
|
|
CFLAGS = $(INCLUDES) $(DEFINES) $(ACFLAGS)
|
|
|
|
all: liblutil.a
|
|
|
|
liblutil.a: version.o
|
|
$(AR) ruv $@ $(OBJS) version.o
|
|
@if [ ! -z "$(RANLIB)" ]; then \
|
|
$(RANLIB) $@; \
|
|
fi; \
|
|
$(RM) ../$@; \
|
|
$(LN) liblutil/$@ ../$@
|
|
|
|
version.c: $(OBJS)
|
|
$(RM) $@
|
|
(u=$${USER-root} v=`$(CAT) ../../build/version` d=`$(PWD)` \
|
|
h=`$(HOSTNAME)` t=`$(DATE)`; $(SED) -e "s|%WHEN%|$${t}|" \
|
|
-e "s|%WHOANDWHERE%|$${u}@$${h}:$${d}|" \
|
|
-e "s|%VERSION%|$${v}|" \
|
|
< Version.c > $@)
|
|
|
|
install: all
|
|
|
|
lint: FORCE
|
|
$(LINT) $(INCLUDES) $(DEFINES) $(SRCS)
|
|
|
|
5lint: FORCE
|
|
$(5LINT) $(INCLUDES) $(DEFINES) $(SRCS)
|
|
|
|
clean: FORCE
|
|
$(RM) liblutil.a ../liblutil.a *.o core a.out version.c
|
|
|
|
depend: FORCE
|
|
$(MKDEP) $(INCLUDES) $(DEFINES) $(SRCS)
|
|
|
|
links:
|
|
@$(LN) .src/*.[ch] .
|
|
|