1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
# $Id: Makefile.in,v 1.7 2005/05/15 17:03:49 armin Exp $
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
mandir=@mandir@
CC=@CC@
CPPFLAGS=@CPPFLAGS@ @DEFS@ -I. -Icompat -DVERSION=\"@PACKAGE_VERSION@\"
CFLAGS=@CFLAGS@
LDFLAGS=@LDFLAGS@
INSTALL=@INSTALL@
AR=@AR@
RANLIB=@RANLIB@
LIBS=@LIBS@
OBJS=event.o log.o @LIBOBJS@
all: libevent.a
libevent.a: $(OBJS)
-rm -f libevent.a
$(AR) cru libevent.a $(OBJS)
$(RANLIB) libevent.a
install:
clean:
-rm -f libevent.a $(OBJS)
distclean: clean
-rm -f Makefile config.log config.status config.h
cvsclean: clean
-rm -f Makefile config.log config.status config.h
-rm -f configure config.h.in config.h.in~
-rm -rf autom4te.cache
dist:
|