--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
11 lines
240 B
Makefile
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 $<
|