Initial revision

This commit is contained in:
brianb
2000-02-12 23:51:37 +00:00
commit 30ab45dc35
15 changed files with 1585 additions and 0 deletions

16
src/extras/Makefile Normal file
View File

@@ -0,0 +1,16 @@
CC = gcc
PROGS = mdb-dump
OBJS = dump.o
all: $(PROGS)
clean:
rm -f core *.o $(PROGS)
mdb-dump: dump.o
$(CC) -g -o $@ $<
.c.o:
$(CC) -g -c $<