mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-09-19 02:27:55 +08:00
Removed generated files from repository.
This commit is contained in:
71
src/Makefile
71
src/Makefile
@@ -1,71 +0,0 @@
|
||||
# Generated automatically from Makefile.in by configure.
|
||||
|
||||
SHELL = /bin/sh
|
||||
|
||||
top_srcdir = .
|
||||
srcdir = .
|
||||
prefix = /usr/local
|
||||
exec_prefix = ${prefix}
|
||||
bindir = $(exec_prefix)/bin
|
||||
infodir = $(exec_prefix)/info
|
||||
libdir = $(exec_prefix)/lib
|
||||
mandir = $(exec_prefix)/man/man1
|
||||
|
||||
CC = gcc
|
||||
CPPFLAGS =
|
||||
CFLAGS = $(CPPFLAG) -g -O2 -DHW_LITTLE_ENDIAN
|
||||
LDFLAGS =
|
||||
LIBS =
|
||||
INSTALL= @INSTALL@
|
||||
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
RM = @RM@
|
||||
subdirs = libmdb util extras
|
||||
|
||||
all:
|
||||
@for dir in ${subdirs}; do \
|
||||
(cd $$dir && $(MAKE) all) \
|
||||
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
|
||||
done && test -z "$$fail"
|
||||
clean:
|
||||
@for dir in ${subdirs} include; do \
|
||||
(cd $$dir && $(MAKE) clean && rm -f Makefile) \
|
||||
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
|
||||
rm -f config.log config.status Makefile config.cache; \
|
||||
done && test -z "$$fail"
|
||||
install:
|
||||
@for dir in ${subdirs} include; do \
|
||||
(cd $$dir && $(MAKE) install) \
|
||||
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
|
||||
done && test -z "$$fail"
|
||||
uninstall:
|
||||
@for dir in ${subdirs} include; do \
|
||||
(cd $$dir && $(MAKE) uninstall) \
|
||||
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
|
||||
done && test -z "$$fail"
|
||||
|
||||
# automatic re-running of configure if the configure.in file has changed
|
||||
${srcdir}/configure: configure.in
|
||||
cd ${srcdir} && autoconf
|
||||
|
||||
# autoheader might not change config.h.in so touch a stamp file
|
||||
${srcdir}/config.h.in: stamp-h.in
|
||||
|
||||
${srcdir}/stamp-h.in: configure.in
|
||||
cd ${srcdir} && autoheader
|
||||
echo timestamp > ${srcdir}/stamp-h.in
|
||||
|
||||
config.h: stamp-h
|
||||
|
||||
stamp-h: config.h.in config.status
|
||||
./config.status
|
||||
|
||||
Makefile: Makefile.in config.status
|
||||
./config.status
|
||||
|
||||
config.status: configure
|
||||
./config.status --recheck
|
||||
|
@@ -1,45 +0,0 @@
|
||||
# Generated automatically from Makefile.in by configure.
|
||||
|
||||
SHELL = /bin/sh
|
||||
|
||||
top_srcdir = ..
|
||||
srcdir = .
|
||||
prefix = /usr/local
|
||||
exec_prefix = ${prefix}
|
||||
bindir = $(exec_prefix)/bin
|
||||
infodir = $(exec_prefix)/info
|
||||
libdir = $(exec_prefix)/lib
|
||||
mandir = $(exec_prefix)/man/man1
|
||||
|
||||
CC = gcc
|
||||
CPPFLAGS =
|
||||
CFLAGS = $(CPPFLAG) -g -O2 -DHW_LITTLE_ENDIAN
|
||||
LDFLAGS =
|
||||
LIBS =
|
||||
INSTALL= @INSTALL@
|
||||
|
||||
PROGS = mdb-dump
|
||||
OBJS = dump.o
|
||||
|
||||
all: $(PROGS)
|
||||
|
||||
clean:
|
||||
rm -f core *.o $(PROGS)
|
||||
|
||||
mdb-dump: dump.o
|
||||
$(CC) -g -o $@ $<
|
||||
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) -g -c $<
|
||||
|
||||
install:
|
||||
@for prog in $(PROGS); do \
|
||||
echo " copying $$prog to $(bindir)"; \
|
||||
cp $$prog $(bindir); \
|
||||
done
|
||||
|
||||
uninstall:
|
||||
@for prog in $(PROGS); do \
|
||||
echo " removing $$prog from $(bindir)"; \
|
||||
rm -f $(bindir)/$$prog; \
|
||||
done
|
@@ -1,56 +0,0 @@
|
||||
# Generated automatically from Makefile.in by configure.
|
||||
|
||||
SHELL = /bin/sh
|
||||
|
||||
top_srcdir = ..
|
||||
srcdir = .
|
||||
prefix = /usr/local
|
||||
exec_prefix = ${prefix}
|
||||
bindir = $(exec_prefix)/bin
|
||||
infodir = $(exec_prefix)/info
|
||||
libdir = $(exec_prefix)/lib
|
||||
mandir = $(exec_prefix)/man/man1
|
||||
|
||||
CC = gcc
|
||||
CPPFLAGS =
|
||||
CFLAGS = $(CPPFLAG) -g -O2 -DHW_LITTLE_ENDIAN
|
||||
LDFLAGS =
|
||||
LIBS =
|
||||
INSTALL= @INSTALL@
|
||||
LIBLIST = libmdb.a
|
||||
|
||||
INC = -I ../include `glib-config --cflags`
|
||||
OBJS = catalog.o mem.o file.o kkd.o table.o data.o dump.o backend.o
|
||||
|
||||
all: libmdb
|
||||
|
||||
libmdb: $(OBJS)
|
||||
rm -f libmdb.a
|
||||
ar cq libmdb.a $(OBJS)
|
||||
clean:
|
||||
rm -f core *.o *.a
|
||||
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) -g -c $< $(INC)
|
||||
|
||||
install:
|
||||
@for lib in $(LIBLIST); do \
|
||||
echo " copying $$lib to $(libdir)"; \
|
||||
cp $$lib $(libdir); \
|
||||
done
|
||||
|
||||
uninstall:
|
||||
@for lib in $(LIBLIST); do \
|
||||
echo " copying $$lib to $(libdir)"; \
|
||||
rm -f $(libdir)/$$lib; \
|
||||
done
|
||||
|
||||
backend.o: backend.c ../include/mdbtools.h
|
||||
catalog.o: catalog.c ../include/mdbtools.h
|
||||
data.o: data.c ../include/mdbtools.h
|
||||
dump.o: dump.c ../include/mdbtools.h
|
||||
file.o: file.c ../include/mdbtools.h
|
||||
kkd.o: kkd.c ../include/mdbtools.h
|
||||
mem.o: mem.c ../include/mdbtools.h
|
||||
table.o: table.c ../include/mdbtools.h
|
||||
|
@@ -1,100 +0,0 @@
|
||||
# Generated automatically from Makefile.in by configure.
|
||||
|
||||
SHELL = /bin/sh
|
||||
|
||||
top_srcdir = ..
|
||||
srcdir = .
|
||||
prefix = /usr/local
|
||||
exec_prefix = ${prefix}
|
||||
bindir = $(exec_prefix)/bin
|
||||
infodir = $(exec_prefix)/info
|
||||
libdir = $(exec_prefix)/lib
|
||||
mandir = $(exec_prefix)/man/man1
|
||||
|
||||
CC = gcc
|
||||
CPPFLAGS =
|
||||
CFLAGS = $(CPPFLAG) -g -O2 -DHW_LITTLE_ENDIAN
|
||||
LDFLAGS =
|
||||
LIBS =
|
||||
INSTALL= @INSTALL@
|
||||
INC = -I ../include `glib-config --cflags`
|
||||
MDBLIB = ../libmdb/libmdb.a
|
||||
LIBS = -L ../libmdb -lmdb `glib-config --libs`
|
||||
PROGS = prcat prkkd prtable prdata prdump mdb-schema mdb-export mdb-tables mdb-header mdb-parsecsv mdb-array
|
||||
PRCATOBJS = prcat.o
|
||||
PRKKDOBJS = prkkd.o
|
||||
PRTABLEOBJS = prtable.o
|
||||
PRDATAOBJS = prdata.o
|
||||
PRDUMPOBJS = prdump.o
|
||||
SCHEMAOBJS = schema.o
|
||||
EXPORTOBJS = mdb-export.o
|
||||
HEADEROBJS = header.o
|
||||
TABLEOBJS = tables.o
|
||||
CSVOBJS = parsecsv.o
|
||||
ARROBJS = mdb-array.o
|
||||
|
||||
all: $(PROGS)
|
||||
|
||||
prcat: $(PRCATOBJS) $(MDBLIB)
|
||||
$(CC) -g -o $@ $(PRCATOBJS) $(LIBS)
|
||||
|
||||
prkkd: $(PRKKDOBJS) $(MDBLIB)
|
||||
$(CC) -g -o $@ $(PRKKDOBJS) $(LIBS)
|
||||
|
||||
prtable: $(PRTABLEOBJS) $(MDBLIB)
|
||||
$(CC) -g -o $@ $(PRTABLEOBJS) $(LIBS)
|
||||
|
||||
prdata: $(PRDATAOBJS) $(MDBLIB)
|
||||
$(CC) -g -o $@ $(PRDATAOBJS) $(LIBS)
|
||||
|
||||
prdump: $(PRDUMPOBJS) $(MDBLIB)
|
||||
$(CC) -g -o $@ $(PRDUMPOBJS) $(LIBS)
|
||||
|
||||
mdb-schema: $(SCHEMAOBJS) $(MDBLIB)
|
||||
$(CC) -g -o $@ $(SCHEMAOBJS) $(LIBS)
|
||||
|
||||
mdb-export: $(EXPORTOBJS) $(MDBLIB)
|
||||
$(CC) -g -o $@ $(EXPORTOBJS) $(LIBS)
|
||||
|
||||
mdb-tables: $(TABLEOBJS) $(MDBLIB)
|
||||
$(CC) -g -o $@ $(TABLEOBJS) $(LIBS)
|
||||
|
||||
mdb-header: $(HEADEROBJS) $(MDBLIB)
|
||||
$(CC) -g -o $@ $(HEADEROBJS) $(LIBS)
|
||||
|
||||
mdb-parsecsv: $(CSVOBJS) $(MDBLIB)
|
||||
$(CC) -g -o $@ $(CSVOBJS) $(LIBS)
|
||||
|
||||
mdb-array: $(ARROBJS) $(MDBLIB)
|
||||
$(CC) -g -o $@ $(ARROBJS) $(LIBS)
|
||||
|
||||
clean:
|
||||
rm -f core *.o $(PROGS)
|
||||
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) -g -c $< $(INC)
|
||||
|
||||
install:
|
||||
@for prog in $(PROGS); do \
|
||||
echo " copying $$prog to $(bindir)"; \
|
||||
cp $$prog $(bindir); \
|
||||
done
|
||||
|
||||
uninstall:
|
||||
@for prog in $(PROGS); do \
|
||||
echo " removing $$prog from $(bindir)"; \
|
||||
rm -f $(bindir)/$$prog; \
|
||||
done
|
||||
|
||||
header.o: header.c ../include/mdbtools.h
|
||||
mdb-array.o: mdb-array.c ../include/mdbtools.h
|
||||
mdb-export.o: mdb-export.c ../include/mdbtools.h
|
||||
parsecsv.o: parsecsv.c ../include/mdbtools.h
|
||||
prcat.o: prcat.c ../include/mdbtools.h
|
||||
prdata.o: prdata.c ../include/mdbtools.h
|
||||
prdump.o: prdump.c ../include/mdbtools.h
|
||||
prkkd.o: prkkd.c ../include/mdbtools.h
|
||||
prtable.o: prtable.c ../include/mdbtools.h
|
||||
schema.o: schema.c ../include/mdbtools.h
|
||||
tables.o: tables.c ../include/mdbtools.h
|
||||
|
Reference in New Issue
Block a user