X-Git-Url: https://git.wh0rd.org/?p=dump.git;a=blobdiff_plain;f=common%2FMakefile.in;h=13f43bd47bb5be16b0cef20a40a975c88c4c2ab0;hp=f3b0e1ed342db7bd7b7eb8d26b164a1d5f7c1871;hb=HEAD;hpb=ec387a1267f4cac7625cd5b6d1c1f080d39085b3 diff --git a/common/Makefile.in b/common/Makefile.in index f3b0e1e..13f43bd 100644 --- a/common/Makefile.in +++ b/common/Makefile.in @@ -1,16 +1,34 @@ -# $Id: Makefile.in,v 1.3 1999/10/11 13:31:08 stelian Exp $ +# $Id: Makefile.in,v 1.7 2011/06/10 13:41:41 stelian Exp $ top_srcdir= @top_srcdir@ srcdir= @srcdir@ +top_builddir= .. @MCONFIG@ -INC= -I$(top_srcdir)/dump -CFLAGS= @CCOPTS@ -pipe $(OPT) $(GINC) $(INC) $(DEFS) -SRCS= dumprmt.c -OBJS= dumprmt.o +INC= -I. -I$(top_srcdir)/dump -I$(top_srcdir)/compat/include +ALL_CFLAGS= @CPPFLAGS@ @CFLAGS@ @CCOPTS@ -pipe $(OPT) $(GINC) $(INC) $(DEFS) @DUMPDEBUG@ +ALL_LDFLAGS= @LDFLAGS@ @LDOPTS@ @STATIC@ +LIBS= $(GLIBS) @ZLIB@ @BZLIB@ @BLKID@ @SSLLIB@ @SQLITE3@ -all:: $(OBJS) +SRCS= dumprmt.c transformation_null.c transformation_lzo.c transformation_zlib.c transformation_bzlib.c \ + transformation_ssl.c legacy_indexer.c sqlite_indexer.c +OBJS= dumprmt.o transformation_null.o transformation_lzo.o transformation_zlib.o transformation_bzlib.o \ + transformation_ssl.o legacy_indexer.o sqlite_indexer.o + +.c.o: + $(CC) -c $(ALL_CFLAGS) $< -o $@ + +all:: $(OBJS) transform_test indexer_test + +transform_test: transform_test.o $(OBJS) $(DEPLIBS) + $(LD) $(ALL_LDFLAGS) -o transform_test transform_test.o \ + transformation_null.o transformation_lzo.o transformation_zlib.o \ + transformation_bzlib.o transformation_ssl.o $(LIBS) + +indexer_test: indexer_test.o $(OBJS) $(DEPLIBS) + $(LD) $(ALL_LDFLAGS) -o indexer_test indexer_test.o legacy_indexer.o \ + sqlite_indexer.o dumprmt.o $(LIBS) install::