Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
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
Operations
Operations
Metrics
Environments
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
cpp-libs
Actor Framework
Commits
8681a1c4
Commit
8681a1c4
authored
Jun 09, 2011
by
neverlord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure script
parent
66aeccda
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
57 deletions
+0
-57
configure
configure
+0
-1
create_libcppa_Makefile.sh
create_libcppa_Makefile.sh
+0
-56
No files found.
configure
View file @
8681a1c4
...
@@ -102,7 +102,6 @@ printf "%b\n" "\trm -f \$(LIB_NAME) \$(OBJECTS)"
...
@@ -102,7 +102,6 @@ printf "%b\n" "\trm -f \$(LIB_NAME) \$(OBJECTS)"
# redirect stdout to Makefile
# redirect stdout to Makefile
exec
>
Makefile
exec
>
Makefile
printf
"%b
\n
"
"all:"
printf
"%b
\n
"
"all:"
printf
"%b
\n
"
"
\t
./create_libcppa_Makefile.sh > libcppa.Makefile"
printf
"%b
\n
"
"
\t
make -f libcppa.Makefile"
printf
"%b
\n
"
"
\t
make -f libcppa.Makefile"
printf
"%b
\n
"
"
\t
make -C unit_testing"
printf
"%b
\n
"
"
\t
make -C unit_testing"
printf
"%b
\n
"
"
\t
make -C queue_performances"
printf
"%b
\n
"
"
\t
make -C queue_performances"
...
...
create_libcppa_Makefile.sh
deleted
100755 → 0
View file @
66aeccda
#!/bin/bash
HEADERS
=
""
SOURCES
=
""
NLINE
=
"
\\
n"
BSLASH
=
"
\\\\
"
function
append_hpp_from
()
{
for
i
in
"
$1
"
/
*
.hpp
;
do
HEADERS
=
"
$HEADERS
${
BSLASH
}${
NLINE
}
$i
"
done
}
function
append_cpp_from
()
{
for
i
in
"
$1
/"
*
.cpp
;
do
SOURCES
=
"
$SOURCES
${
BSLASH
}${
NLINE
}
$i
"
done
}
append_hpp_from
"cppa"
append_hpp_from
"cppa/detail"
append_hpp_from
"cppa/util"
append_cpp_from
"src"
echo
"include Makefile.rules"
echo
"INCLUDE_FLAGS =
\$
(INCLUDES) -I./"
echo
printf
"%b
\n
"
"HEADERS =
$HEADERS
"
echo
printf
"%b
\n
"
"SOURCES =
$SOURCES
"
echo
echo
"OBJECTS =
\$
(SOURCES:.cpp=.o)"
echo
echo
"LIB_NAME =
$LIB_NAME
"
echo
echo
"%.o : %.cpp
\$
(HEADERS)"
printf
"%b
\n
"
"
\t\$
(CXX)
\$
(CXXFLAGS)
\$
(INCLUDE_FLAGS) -fPIC -c
\$
< -o
\$
@"
echo
echo
"
\$
libcppa :
\$
(OBJECTS)
\$
(HEADERS)"
if
test
"
$(
uname
)
"
"="
"Darwin"
;
then
printf
"%b
\n
"
"
\t\$
(CXX)
\$
(LIBS) -dynamiclib -o libcppa.dylib
\$
(OBJECTS)"
else
printf
"%b
\n
"
"
\t\$
(CXX)
\$
(LIBS) -shared -Wl,-soname,libcppa.so.0 -o libcppa.so.0.0.0
\$
(OBJECTS)"
printf
"%b
\n
"
"
\t
ln -s libcppa.so.0.0.0 libcppa.so.0.0"
printf
"%b
\n
"
"
\t
ln -s libcppa.so.0.0.0 libcppa.so.0"
printf
"%b
\n
"
"
\t
ln -s libcppa.so.0.0.0 libcppa.so"
fi
echo
echo
"all : libcppa
\$
(OBJECTS)"
echo
echo
"clean:"
printf
"%b
\n
"
"
\t
rm -f
\$
(LIB_NAME)
\$
(OBJECTS)"
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