Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
Practical-Cryptdb
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Zhaozhen
Practical-Cryptdb
Commits
67dae3e7
Commit
67dae3e7
authored
Feb 27, 2018
by
yiwenshao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add test_parser
parent
422057f2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
Makefile
Makefile
+4
-0
Makefrag
test_parser/Makefrag
+7
-0
template.cc
test_parser/template.cc
+3
-0
No files found.
Makefile
View file @
67dae3e7
...
@@ -97,6 +97,9 @@ mtl/test_util_exe/%:$(OBJDIR)/test_util/%.o
...
@@ -97,6 +97,9 @@ mtl/test_util_exe/%:$(OBJDIR)/test_util/%.o
@
mkdir
-p
$
(
@D
)
@
mkdir
-p
$
(
@D
)
$(CXX)
-g
-o
$@
$^
$(CXXFLAGS)
$(LDFLAGS)
-L
/
$(MYBUILD)
/libmysqld
-lmysqld
-laio
-lz
-ldl
-lm
-lcrypt
-lpthread
-lcryptdb
-ledbcrypto
-ledbutil
-ledbparser
-lntl
-lcrypto
$(CXX)
-g
-o
$@
$^
$(CXXFLAGS)
$(LDFLAGS)
-L
/
$(MYBUILD)
/libmysqld
-lmysqld
-laio
-lz
-ldl
-lm
-lcrypt
-lpthread
-lcryptdb
-ledbcrypto
-ledbutil
-ledbparser
-lntl
-lcrypto
mtl/test_parser_exe/%
:
$(OBJDIR)/test_parser/%.o
@
mkdir
-p
$
(
@D
)
$(CXX)
-g
-o
$@
$^
$(CXXFLAGS)
$(LDFLAGS)
-L
/
$(MYBUILD)
/libmysqld
-lmysqld
-laio
-lz
-ldl
-lm
-lcrypt
-lpthread
-lcryptdb
-ledbcrypto
-ledbutil
-ledbparser
-lntl
-lcrypto
include
crypto/Makefrag
include
crypto/Makefrag
include
parser/Makefrag
include
parser/Makefrag
...
@@ -107,6 +110,7 @@ include mysqlproxy/Makefrag
...
@@ -107,6 +110,7 @@ include mysqlproxy/Makefrag
include
debug/Makefrag
include
debug/Makefrag
include
test_wrapper/Makefrag
include
test_wrapper/Makefrag
include
test_util/Makefrag
include
test_util/Makefrag
include
test_parser/Makefrag
include
wrapper/Makefrag
include
wrapper/Makefrag
...
...
test_parser/Makefrag
0 → 100644
View file @
67dae3e7
OBJDIRS += test_parser
##note that xx=*.cc will not expand. wildcard *.cc will include files from other directories.
##%.o will include testall
TESTALL_OBJS := $(patsubst %.cc,$(OBJDIR)/%.o,$(wildcard test_parser/*.cc))
TESTALL_EXES := $(patsubst test_parser/%.cc,mtl/test_parser_exe/%,$(wildcard test_parser/*.cc))
all: $(TESTALL_OBJS) $(TESTALL_EXES)
test_parser/template.cc
0 → 100644
View file @
67dae3e7
int
main
()
{
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment