mariadb/linux/tests/Makefile
Rich Prohaska 624b9272c4 use libtokuportability. closes #1269
git-svn-id: file:///svn/toku/tokudb.1032b@8076 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:30 -04:00

16 lines
No EOL
345 B
Makefile

CPPFLAGS = -I../../include -I..
CFLAGS = -Wall -Werror -g -O0
LDFLAGS = ../libtokuportability.a
SRCS = $(wildcard test-*.c)
TARGETS = $(patsubst %.c,%,$(SRCS))
all: $(TARGETS)
%: %.c
$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< $(LDFLAGS)
test-gettime: test-gettime.c
$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< $(LDFLAGS) -lrt
clean:
rm -rf $(TARGETS)