Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
0b982e70
Commit
0b982e70
authored
Jul 19, 2005
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed makefiles in examples to adopt to change in file structure
parent
6389639d
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
32 additions
and
30 deletions
+32
-30
storage/ndb/ndbapi-examples/mgmapi_logevent_example/Makefile
storage/ndb/ndbapi-examples/mgmapi_logevent_example/Makefile
+6
-6
storage/ndb/ndbapi-examples/ndbapi_async_example/Makefile
storage/ndb/ndbapi-examples/ndbapi_async_example/Makefile
+3
-3
storage/ndb/ndbapi-examples/ndbapi_async_example1/Makefile
storage/ndb/ndbapi-examples/ndbapi_async_example1/Makefile
+6
-5
storage/ndb/ndbapi-examples/ndbapi_event_example/Makefile
storage/ndb/ndbapi-examples/ndbapi_event_example/Makefile
+3
-3
storage/ndb/ndbapi-examples/ndbapi_retries_example/Makefile
storage/ndb/ndbapi-examples/ndbapi_retries_example/Makefile
+4
-3
storage/ndb/ndbapi-examples/ndbapi_scan_example/Makefile
storage/ndb/ndbapi-examples/ndbapi_scan_example/Makefile
+3
-3
storage/ndb/ndbapi-examples/ndbapi_simple_example/Makefile
storage/ndb/ndbapi-examples/ndbapi_simple_example/Makefile
+4
-4
storage/ndb/ndbapi-examples/ndbapi_simple_index_example/Makefile
.../ndb/ndbapi-examples/ndbapi_simple_index_example/Makefile
+3
-3
No files found.
storage/ndb/ndbapi-examples/mgmapi_logevent_example/Makefile
View file @
0b982e70
...
...
@@ -6,18 +6,18 @@ CFLAGS = -c -Wall -fno-rtti -fno-exceptions
CXXFLAGS
=
DEBUG
=
LFLAGS
=
-Wall
TOP_SRCDIR
=
../../..
INCLUDE_DIR
=
$(TOP_SRCDIR)
LIB_DIR
=
-L
$(TOP_SRCDIR)
/ndb/src/.libs
\
TOP_SRCDIR
=
../../..
/..
INCLUDE_DIR
=
$(TOP_SRCDIR)
/storage/ndb/include
LIB_DIR
=
-L
$(TOP_SRCDIR)
/
storage/
ndb/src/.libs
\
-L
$(TOP_SRCDIR)
/libmysql_r/.libs
\
-L
$(TOP_SRCDIR)
/mysys
-L
$(TOP_SRCDIR)
/mysys
-L
$(TOP_SRCDIR)
/strings
SYS_LIB
=
$(TARGET)
:
$(OBJS)
$(CXX)
$(CXXFLAGS)
$(LFLAGS)
$(LIB_DIR)
$(OBJS)
-lndbclient
-lmysqlclient_r
-lmysys
-lz
$(SYS_LIB)
-o
$(TARGET)
$(CXX)
$(CXXFLAGS)
$(LFLAGS)
$(LIB_DIR)
$(OBJS)
-lndbclient
-lmysqlclient_r
-lmysys
-l
mystrings
-l
z
$(SYS_LIB)
-o
$(TARGET)
$(TARGET).o
:
$(SRCS)
$(CXX)
$(CFLAGS)
-I
$(
INCLUDE_DIR)
/include
-I
$(INCLUDE_DIR)
/ndb/include
-I
$(INCLUDE_DIR)
/ndb/include/mgmapi
-I
$(INCLUDE_DIR)
/ndb/include
/ndbapi
$(SRCS)
$(CXX)
$(CFLAGS)
-I
$(
TOP_SRCDIR)
/include
-I
$(INCLUDE_DIR)
-I
$(INCLUDE_DIR)
/mgmapi
-I
$(INCLUDE_DIR)
/ndbapi
$(SRCS)
clean
:
rm
-f
*
.o
$(TARGET)
storage/ndb/ndbapi-examples/ndbapi_async_example/Makefile
View file @
0b982e70
...
...
@@ -6,9 +6,9 @@ CFLAGS = -g -c -Wall -fno-rtti -fno-exceptions
CXXFLAGS
=
-g
DEBUG
=
LFLAGS
=
-Wall
TOP_SRCDIR
=
../../..
TOP_SRCDIR
=
../../..
/..
INCLUDE_DIR
=
$(TOP_SRCDIR)
LIB_DIR
=
-L
$(TOP_SRCDIR)
/ndb/src/.libs
\
LIB_DIR
=
-L
$(TOP_SRCDIR)
/
storage/
ndb/src/.libs
\
-L
$(TOP_SRCDIR)
/libmysql_r/.libs
\
-L
$(TOP_SRCDIR)
/mysys
-L
$(TOP_SRCDIR)
/strings
SYS_LIB
=
...
...
@@ -17,7 +17,7 @@ $(TARGET): $(OBJS)
$(CXX)
$(CXXFLAGS)
$(LFLAGS)
$(LIB_DIR)
$(OBJS)
-lndbclient
-lmysqlclient_r
-lmysys
-lmystrings
-lz
$(SYS_LIB)
-o
$(TARGET)
$(TARGET).o
:
$(SRCS)
$(CXX)
$(CFLAGS)
-I
$(INCLUDE_DIR)
/include
-I
$(INCLUDE_DIR)
/extra
-I
$(INCLUDE_DIR)
/
ndb/include
-I
$(INCLUDE_DIR)
/ndb/include/ndbapi
$(SRCS)
$(CXX)
$(CFLAGS)
-I
$(INCLUDE_DIR)
/include
-I
$(INCLUDE_DIR)
/extra
-I
$(INCLUDE_DIR)
/
storage/ndb/include
-I
$(INCLUDE_DIR)
/storage
/ndb/include/ndbapi
$(SRCS)
clean
:
rm
-f
*
.o
$(TARGET)
storage/ndb/ndbapi-examples/ndbapi_async_example1/Makefile
View file @
0b982e70
...
...
@@ -5,17 +5,18 @@ CXX = g++
CFLAGS
=
-c
-Wall
-fno-rtti
-fno-exceptions
DEBUG
=
LFLAGS
=
-Wall
INCLUDE_DIR
=
../../include
LIB_DIR
=
-L
../../src/.libs
\
-L
../../../libmysql_r/.libs
\
-L
../../../mysys
-L
../../../strings
TOP_SRCDIR
=
../../../..
INCLUDE_DIR
=
$(TOP_SRCDIR)
LIB_DIR
=
-L
$(TOP_SRCDIR)
/storage/ndb/src/.libs
\
-L
$(TOP_SRCDIR)
/libmysql_r/.libs
\
-L
$(TOP_SRCDIR)
/mysys
-L
$(TOP_SRCDIR)
/strings
SYS_LIB
=
$(TARGET)
:
$(OBJS)
$(CXX)
$(LFLAGS)
$(LIB_DIR)
$(OBJS)
-lndbclient
-lmysqlclient_r
-lmysys
-lmystrings
-lz
$(SYS_LIB)
-o
$(TARGET)
$(TARGET).o
:
$(SRCS)
$(CXX)
$(CFLAGS)
-I
$(INCLUDE_DIR)
-I
$(INCLUDE_DIR)
/ndbapi
$(SRCS)
$(CXX)
$(CFLAGS)
-I
$(INCLUDE_DIR)
/storage/ndb/include
-I
$(INCLUDE_DIR)
/storage/ndb/include
/ndbapi
$(SRCS)
clean
:
rm
-f
*
.o
$(TARGET)
storage/ndb/ndbapi-examples/ndbapi_event_example/Makefile
View file @
0b982e70
...
...
@@ -6,9 +6,9 @@ CFLAGS = -c -Wall -fno-rtti -fno-exceptions
CXXFLAGS
=
DEBUG
=
LFLAGS
=
-Wall
TOP_SRCDIR
=
../../..
INCLUDE_DIR
=
$(TOP_SRCDIR)
/ndb/include
LIB_DIR
=
-L
$(TOP_SRCDIR)
/ndb/src/.libs
\
TOP_SRCDIR
=
../../..
/..
INCLUDE_DIR
=
$(TOP_SRCDIR)
/
storage/
ndb/include
LIB_DIR
=
-L
$(TOP_SRCDIR)
/
storage/
ndb/src/.libs
\
-L
$(TOP_SRCDIR)
/libmysql_r/.libs
\
-L
$(TOP_SRCDIR)
/mysys
-L
$(TOP_SRCDIR)
/strings
SYS_LIB
=
...
...
storage/ndb/ndbapi-examples/ndbapi_retries_example/Makefile
View file @
0b982e70
...
...
@@ -5,10 +5,11 @@ CXX = g++
CFLAGS
=
-c
-Wall
-fno-rtti
-fno-exceptions
DEBUG
=
LFLAGS
=
-Wall
TOP_SRCDIR
=
../../../..
INCLUDE_DIR
=
../../include
LIB_DIR
=
-L
../..
/src/.libs
\
-L
../../..
/libmysql_r/.libs
\
-L
../../../mysys
-L
../../..
/strings
LIB_DIR
=
-L
$(TOP_SRCDIR)
/storage/ndb
/src/.libs
\
-L
$(TOP_SRCDIR)
/libmysql_r/.libs
\
-L
$(TOP_SRCDIR)
/mysys
-L
$(TOP_SRCDIR)
/strings
SYS_LIB
=
$(TARGET)
:
$(OBJS)
...
...
storage/ndb/ndbapi-examples/ndbapi_scan_example/Makefile
View file @
0b982e70
...
...
@@ -6,9 +6,9 @@ CFLAGS = -g -c -Wall -fno-rtti -fno-exceptions
CXXFLAGS
=
-g
DEBUG
=
LFLAGS
=
-Wall
TOP_SRCDIR
=
../../..
TOP_SRCDIR
=
../../..
/..
INCLUDE_DIR
=
$(TOP_SRCDIR)
LIB_DIR
=
-L
$(TOP_SRCDIR)
/ndb/src/.libs
\
LIB_DIR
=
-L
$(TOP_SRCDIR)
/
storage/
ndb/src/.libs
\
-L
$(TOP_SRCDIR)
/libmysql_r/.libs
\
-L
$(TOP_SRCDIR)
/mysys
-L
$(TOP_SRCDIR)
/strings
SYS_LIB
=
...
...
@@ -17,7 +17,7 @@ $(TARGET): $(OBJS)
$(CXX)
$(CXXFLAGS)
$(LFLAGS)
$(LIB_DIR)
$(OBJS)
-lndbclient
-lmysqlclient_r
-lmysys
-lmystrings
-lz
$(SYS_LIB)
-o
$(TARGET)
$(TARGET).o
:
$(SRCS)
$(CXX)
$(CFLAGS)
-I
$(INCLUDE_DIR)
/include
-I
$(INCLUDE_DIR)
/extra
-I
$(INCLUDE_DIR)
/
ndb/include
-I
$(INCLUDE_DIR)
/ndb/include/ndbapi
$(SRCS)
$(CXX)
$(CFLAGS)
-I
$(INCLUDE_DIR)
/include
-I
$(INCLUDE_DIR)
/extra
-I
$(INCLUDE_DIR)
/
storage/ndb/include
-I
$(INCLUDE_DIR)
/storage
/ndb/include/ndbapi
$(SRCS)
clean
:
rm
-f
*
.o
$(TARGET)
storage/ndb/ndbapi-examples/ndbapi_simple_example/Makefile
View file @
0b982e70
...
...
@@ -6,9 +6,9 @@ CFLAGS = -c -Wall -fno-rtti -fno-exceptions
CXXFLAGS
=
DEBUG
=
LFLAGS
=
-Wall
TOP_SRCDIR
=
../../..
INCLUDE_DIR
=
$(TOP_SRCDIR)
LIB_DIR
=
-L
$(TOP_SRCDIR)
/ndb/src/.libs
\
TOP_SRCDIR
=
../../..
/..
INCLUDE_DIR
=
$(TOP_SRCDIR)
/storage/ndb/include
LIB_DIR
=
-L
$(TOP_SRCDIR)
/
storage/
ndb/src/.libs
\
-L
$(TOP_SRCDIR)
/libmysql_r/.libs
\
-L
$(TOP_SRCDIR)
/mysys
-L
$(TOP_SRCDIR)
/strings
SYS_LIB
=
...
...
@@ -17,7 +17,7 @@ $(TARGET): $(OBJS)
$(CXX)
$(CXXFLAGS)
$(LFLAGS)
$(LIB_DIR)
$(OBJS)
-lndbclient
-lmysqlclient_r
-lmysys
-lmystrings
-lz
$(SYS_LIB)
-o
$(TARGET)
$(TARGET).o
:
$(SRCS)
$(CXX)
$(CFLAGS)
-I
$(
INCLUDE_DIR)
/include
-I
$(INCLUDE_DIR)
/ndb/include
-I
$(INCLUDE_DIR)
/ndb/include
/ndbapi
$(SRCS)
$(CXX)
$(CFLAGS)
-I
$(
TOP_SRCDIR)
/include
-I
$(INCLUDE_DIR)
-I
$(INCLUDE_DIR)
/ndbapi
$(SRCS)
clean
:
rm
-f
*
.o
$(TARGET)
storage/ndb/ndbapi-examples/ndbapi_simple_index_example/Makefile
View file @
0b982e70
...
...
@@ -6,9 +6,9 @@ CFLAGS = -c -Wall -fno-rtti -fno-exceptions
CXXFLAGS
=
DEBUG
=
LFLAGS
=
-Wall
TOP_SRCDIR
=
../../..
TOP_SRCDIR
=
../../..
/..
INCLUDE_DIR
=
$(TOP_SRCDIR)
LIB_DIR
=
-L
$(TOP_SRCDIR)
/ndb/src/.libs
\
LIB_DIR
=
-L
$(TOP_SRCDIR)
/
storage/
ndb/src/.libs
\
-L
$(TOP_SRCDIR)
/libmysql_r/.libs
\
-L
$(TOP_SRCDIR)
/mysys
-L
$(TOP_SRCDIR)
/strings
SYS_LIB
=
...
...
@@ -17,7 +17,7 @@ $(TARGET): $(OBJS)
$(CXX)
$(CXXFLAGS)
$(LFLAGS)
$(LIB_DIR)
$(OBJS)
-lndbclient
-lmysqlclient_r
-lmysys
-lmystrings
-lz
$(SYS_LIB)
-o
$(TARGET)
$(TARGET).o
:
$(SRCS)
$(CXX)
$(CFLAGS)
-I
$(INCLUDE_DIR)
/include
-I
$(INCLUDE_DIR)
/
ndb/include
-I
$(INCLUDE_DIR)
/ndb/include/ndbapi
$(SRCS)
$(CXX)
$(CFLAGS)
-I
$(INCLUDE_DIR)
/include
-I
$(INCLUDE_DIR)
/
storage/ndb/include
-I
$(INCLUDE_DIR)
/storage
/ndb/include/ndbapi
$(SRCS)
clean
:
rm
-f
*
.o
$(TARGET)
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