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

18
src/util/Makefile Normal file
View File

@@ -0,0 +1,18 @@
CC = gcc
INC = -I ../include
LIBS = -L ../libmdb -lmdb
PROGS = prcat
PRCATOBJS = prcat.o
all: $(PROGS)
prcat: $(PRCATOBJS)
$(CC) -g -o $@ $(PRCATOBJS) $(LIBS)
clean:
rm -f core *.o $(PROGS)
.c.o:
$(CC) -g -c $< $(INC)