mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
0d44815bf5
git-svn-id: file:///svn/toku/tokudb.1032b@7778 c7de825b-a66e-492c-adef-691d508d4ae1
17 lines
421 B
Makefile
17 lines
421 B
Makefile
# -*- Mode: Makefile -*-
|
|
|
|
.DEFAULT_GOAL=all
|
|
TOKUROOT=../../
|
|
INCLUDEDIRS=-I$(TOKUROOT)include/windows -I$(TOKUROOT)newbrt
|
|
include $(TOKUROOT)include/Makefile.include
|
|
|
|
SKIP_WARNING += $(ICC_NOWARN)1418 #Non static functions do not need prototypes.
|
|
|
|
SRCS = $(wildcard test-*.c)
|
|
BINS_RAW = $(patsubst %.c,%,$(SRCS))
|
|
#Bins will be generated.
|
|
$(BINS): $(LIBPORTABILITY)
|
|
$(BINS): CFLAGS+=-DTESTDIR=\"dir.$<.dir\"
|
|
|
|
all: $(BINS)
|
|
|