Files
mongo/examples/c/Makefile
Michael Cahill 2a4f3179f5 Add code examples for every API call, add config parameters to commit and rollback.
--HG--
branch : mjc
rename : examples/c/ex_hello.c => examples/c/ex_all.c
2011-01-13 10:50:42 +11:00

14 lines
347 B
Makefile

CC = gcc -Wall -I../../include # -Wno-unused -x c++
OBJS = \
ex_access.o ex_all.o ex_call_center.o ex_config.o ex_cursor.o \
ex_extending.o ex_hello.o ex_pack.o ex_process.o ex_schema.o \
ex_sequence.o ex_stat.o ex_thread.o ex_tpcb.o ex_transaction.o
all: $(OBJS)
clean:
rm -f $(OBJS)
%.o: %.c ../../include/wiredtiger.h
$(CC) -o $@ -c $<