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
5d200d40
Commit
5d200d40
authored
Jul 05, 2012
by
Matthias Vallentin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of now obsolete configured target.
parent
7e31d450
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
13 deletions
+5
-13
configure
configure
+5
-13
No files found.
configure
View file @
5d200d40
...
...
@@ -202,33 +202,25 @@ fi
echo
"DIRS :=
$workdirs
\n
"
>
$sourcedir
/Makefile
read
-d
''
makefile
<<
"
EOT
"
all:
configured
all:
@for i in
$(
DIRS
)
; do
$(
MAKE
)
-C
$$
i
$@
; done
configured:
@for i in
$(
DIRS
)
; do
\\
test -d
$$
i ||
\\
( echo "Error: No build directory found. Did you run configure?" && exit 1 );
\\
test -e
$$
i/Makefile ||
\\
( echo "Error: No Makefile in build directory found. Did you run configure?" && exit 1 );
\\
done
test: configured
test:
@for i in
$(
DIRS
)
; do
$(
MAKE
)
-C
$$
i
$@
; done
install:
@for i in
$(
DIRS
)
; do
$(
MAKE
)
-C
$$
i
$@
; done
uninstall:
configured
uninstall:
@for i in
$(
DIRS
)
; do
$(
MAKE
)
-C
$$
i
$@
; done
clean:
configured
clean:
@for i in
$(
DIRS
)
; do
$(
MAKE
)
-C
$$
i
$@
; done
distclean:
rm -rf
$(
DIRS
)
Makefile
.PHONY: all
configured
test install uninstall clean distclean
.PHONY: all test install uninstall clean distclean
EOT
echo
"
$makefile
"
>>
$sourcedir
/Makefile
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