X-Git-Url: https://git.wh0rd.org/?p=dump.git;a=blobdiff_plain;f=common%2FMakefile.in;h=13f43bd47bb5be16b0cef20a40a975c88c4c2ab0;hp=9e4fd653587a25335de0ae850731840f6bc59067;hb=HEAD;hpb=ddd2ef55b78a62c4bc3daad18bef8a90e85a2052 diff --git a/common/Makefile.in b/common/Makefile.in index 9e4fd65..13f43bd 100644 --- a/common/Makefile.in +++ b/common/Makefile.in @@ -1,14 +1,34 @@ +# $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@ + +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) -all:: $(OBJS) +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::