mirror of
https://github.com/mdbtools/mdbtools.git
synced 2026-03-10 00:20:54 +08:00
Initial revision
This commit is contained in:
18
src/util/Makefile
Normal file
18
src/util/Makefile
Normal 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)
|
||||
Reference in New Issue
Block a user