2000-03-17 23:46:05 +00:00
|
|
|
# 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
|
2000-02-12 23:51:37 +00:00
|
|
|
|
|
|
|
CC = gcc
|
2000-03-17 23:46:05 +00:00
|
|
|
CPPFLAGS =
|
2000-08-09 03:04:57 +00:00
|
|
|
CFLAGS = $(CPPFLAG) -g -O2 -DHW_LITTLE_ENDIAN
|
2000-03-17 23:46:05 +00:00
|
|
|
LDFLAGS =
|
|
|
|
LIBS =
|
|
|
|
INSTALL= @INSTALL@
|
2000-02-12 23:51:37 +00:00
|
|
|
|
|
|
|
PROGS = mdb-dump
|
2000-03-19 13:57:08 +00:00
|
|
|
OBJS = dump.o
|
2000-02-12 23:51:37 +00:00
|
|
|
|
|
|
|
all: $(PROGS)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f core *.o $(PROGS)
|
|
|
|
|
|
|
|
mdb-dump: dump.o
|
|
|
|
$(CC) -g -o $@ $<
|
|
|
|
|
|
|
|
.c.o:
|
2000-08-09 03:04:57 +00:00
|
|
|
$(CC) $(CFLAGS) -g -c $<
|
2000-03-19 13:57:08 +00:00
|
|
|
|
|
|
|
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
|