You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
433 B
22 lines
433 B
CC = gcc
|
|
W = -W -Wall -Wno-unused-parameter -Wcast-qual -Wbad-function-cast
|
|
OPT = -O2 -g
|
|
CFLAGS = -pthread $(OPT) $(W) $(XCFLAGS)
|
|
LDLIBS = -lssl
|
|
|
|
all: mtest mdb_stat
|
|
|
|
clean:
|
|
rm -f mtest mdb_stat *.[ao] *~ testdb
|
|
|
|
test: all
|
|
./mtest && ./mdb_stat testdb
|
|
|
|
mdb_stat: mdb_stat.o mdb.o idl.o
|
|
mtest: mtest.o mdb.o idl.o
|
|
|
|
%: %.o mdb.o
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@
|
|
|
|
%.o: %.c mdb.h
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
|
|
|