Page MenuHomePhorge

No OneTemporary

Authored By
Unknown
Size
2 KB
Referenced Files
None
Subscribers
None
diff --git a/lib/Makefile.in b/lib/Makefile.in
index ab0f0d0f3..2bbceee2a 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -1,78 +1,80 @@
# Makefile for cyrus library
#
# (C) Copyright 1994 by Carnegie Mellon University
#
# All Rights Reserved
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose and without fee is hereby granted,
# provided that the above copyright notice appear in all copies and that
# both that copyright notice and this permission notice appear in
# supporting documentation, and that the name of CMU not be
# used in advertising or publicity pertaining to distribution of the
# software without specific, written prior permission.
#
# CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
# ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
# CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
# ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
# WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
# ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
# SOFTWARE.
#
# Authorization namespace.
AUTH=auth_@WITH_AUTH@.o
# ACL interpretation. Only one choice for now:
ACL=acl_afs.o
srcdir = @srcdir@
VPATH = @srcdir@
CC = @CC@
INSTALL = @INSTALL@
RANLIB = @RANLIB@
DEFS = @DEFS@
CPPFLAGS = @CPPFLAGS@
LIBS = @LIBS@
CFLAGS = -g
LDFLAGS = -g
SHELL = /bin/sh
OBJS= acl.o assert.o charset.o glob.o util.o prot.o n_binsearch.o xmalloc.o \
$(ACL) $(AUTH) @LIBOBJS@
all: libcyrus.a
.c.o:
$(CC) -c $(CPPFLAGS) $(DEFS) -I$(srcdir) -I. $(CFLAGS) $<
libcyrus.a: $(OBJS)
ar cr libcyrus.a $(OBJS)
$(RANLIB) libcyrus.a
charset.c: chartables.h
chartables.h : mkchartable
- mkchartable -m $(srcdir)/charset/unicode.map $(srcdir)/charset/*.t >chartables.h
+ rm -f chartables.h
+ mkchartable -m $(srcdir)/charset/unicode.map $(srcdir)/charset/*.t >x-chartables.h
+ mv x-chartables.h chartables.h
mkchartable: mkchartable.o xmalloc.o assert.o
$(CC) $(LDFLAGS) -o mkchartable mkchartable.o xmalloc.o assert.o
clean:
rm -f *.o *.a chartables.h Makefile.bak
distclean: clean
rm -f Makefile
depend:
makedepend $(CPPFLAGS) $(DEFS) -I$(srcdir) $(CFLAGS) *.c $(srcdir)/*.c
# DO NOT DELETE THIS LINE -- make depend depends on it.

File Metadata

Mime Type
text/x-diff
Expires
Apr 4 2026, 10:14 AM (4 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18823620
Default Alt Text
(2 KB)

Event Timeline