]> git.wh0rd.org - dump.git/blame - testing/Makefile.in
Encryption (and compression as plugins) support.
[dump.git] / testing / Makefile.in
CommitLineData
e3956dfb
SP
1# $Id: Makefile.in,v 1.1 2011/06/10 13:07:29 stelian Exp $
2
3top_srcdir= @top_srcdir@
4srcdir= @srcdir@
5top_builddir= ..
6
7@MCONFIG@
8
9PROG= transform_test
10INC= -I$(top_srcdir)/dump -I$(top_srcdir)/common
11ALL_CFLAGS= @CPPFLAGS@ @CFLAGS@ @CCOPTS@ -pipe $(OPT) $(GINC) $(INC) $(DEFS) @DUMPDEBUG@
12ALL_LDFLAGS= @LDFLAGS@ @LDOPTS@ @STATIC@
13LIBS= $(GLIBS) @ZLIB@ @BZLIB@ @BLKID@ @SSLLIB@
14SRCS= transform_test.c ../common/transformation_null.c ../common/transformation_lzo.c ../common/transformation_zlib.c ../common/transformation_bzlib.c ../common/transformation_ssl.c
15OBJS= 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
20all:: $(PROG)
21
22$(PROG): $(OBJS) $(DEPLIBS)
23 $(LD) $(ALL_LDFLAGS) -o $(PROG) $(OBJS) $(LIBS)
24
25install::
26
27clean::
28 $(RM) -f \#* *.s *.o *.a *~ core
29
30distclean:: 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