File: Makefile.in

package info (click to toggle)
dnsproxy 1.15-5
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 732 kB
  • ctags: 599
  • sloc: ansic: 4,947; sh: 299; makefile: 139
file content (40 lines) | stat: -rw-r--r-- 714 bytes parent folder | download
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: