]> git.wh0rd.org - dump.git/blob - testing/Makefile.in
Regenerate configure.
[dump.git] / testing / Makefile.in
1 # $Id: Makefile.in,v 1.1 2011/06/10 13:07:29 stelian Exp $
2
3 top_srcdir= @top_srcdir@
4 srcdir= @srcdir@
5 top_builddir= ..
6
7 @MCONFIG@
8
9 PROG= transform_test
10 INC= -I$(top_srcdir)/dump -I$(top_srcdir)/common
11 ALL_CFLAGS= @CPPFLAGS@ @CFLAGS@ @CCOPTS@ -pipe $(OPT) $(GINC) $(INC) $(DEFS) @DUMPDEBUG@
12 ALL_LDFLAGS= @LDFLAGS@ @LDOPTS@ @STATIC@
13 LIBS= $(GLIBS) @ZLIB@ @BZLIB@ @BLKID@ @SSLLIB@
14 SRCS= transform_test.c ../common/transformation_null.c ../common/transformation_lzo.c ../common/transformation_zlib.c ../common/transformation_bzlib.c ../common/transformation_ssl.c
15 OBJS= transform_test.o ../common/transformation_null.o ../common/transformation_lzo.o ../common/transformation_zlib.o ../common/transformation_bzlib.o ../common/transformation_ssl.o
16
17 .c.o:
18 $(CC) -c $(ALL_CFLAGS) $< -o $@
19
20 all:: $(PROG)
21
22 $(PROG): $(OBJS) $(DEPLIBS)
23 $(LD) $(ALL_LDFLAGS) -o $(PROG) $(OBJS) $(LIBS)
24
25 install::
26
27 clean::
28 $(RM) -f \#* *.s *.o *.a *~ core
29
30 distclean:: clean
31 $(RM) -f Makefile Makefile.old .depend
32
33 # +++ Dependency line eater +++
34 #
35 # Makefile dependencies follow. This must be the last section in
36 # the Makefile.in file
37 #
38