# $Id: Makefile.in,v 1.7 2005/05/15 17:03:49 armin Exp $

prefix=
exec_prefix=${prefix}
bindir=${exec_prefix}/bin
sbindir=${exec_prefix}/sbin
mandir=${prefix}/man

CC=cc
CPPFLAGS= -DHAVE_CONFIG_H -I. -Icompat -DVERSION=\"1.1\"
CFLAGS=-fno-common ${CPPFLAGS}
LDFLAGS=
INSTALL=/usr/bin/install -c -o root -g wheel
AR=/usr/bin/ar
RANLIB=ranlib
LIBS=
OBJS=event.o log.o  select.$U. poll.$U. kqueue.$U. signal.$U.

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:



syntax highlighted by Code2HTML, v. 0.9.1