Files
mongo/examples/c/Makefile
Michael Cahill b65420c0bd More work on documentation and examples, removed some things from the API, incorporated some of Keith's feedback.
--HG--
branch : mjc
rename : examples/c/ex_schema.c => examples/c/ex_call_center.c
extra : transplant_source : %AE%E9%C4%0B%3A%C5%0EH%E1%A8%A2L%E6%D2%D6%40G%9Dzq
2010-12-16 22:54:09 +11:00

11 lines
240 B
Makefile

CC = gcc -W -Wall -I../../include # -Wno-unused -x c++
OBJS = ex_access.o ex_call_center.o ex_config.o ex_hello.o ex_sequence.o ex_stat.o ex_schema.o
all: $(OBJS)
clean:
rm -f $(OBJS)
%.o: %.c ../../include/wt/wtds.h
$(CC) -o $@ -c $<