Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
projet
VPLPP
Commits
cbab3b90
Commit
cbab3b90
authored
Apr 24, 2020
by
Guillaume Huard
Browse files
Small bugfix related to debug and compilation
parent
589107d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
C_Programming/ef/vpl_evaluate_setup.pl
View file @
cbab3b90
...
...
@@ -13,7 +13,7 @@ search() {
}
end() {
if [ -n "$REMOVE
" -o -n "
$GENERATED_FILES" ]
if [
$(expr "$-" : '.*x') -eq 0 -a
-n "$REMOVE$GENERATED_FILES" ]
then
rm -r $REMOVE $GENERATED_FILES
fi
...
...
@@ -28,10 +28,10 @@ fi
for file in $FILES
do
base=$(basename $file .c)
$CC -c $file || end $?
$CC
$CFLAGS
-c $file || end $?
GENERATED_FILES="$GENERATED_FILES $base.o"
done
$CC
$CFLAGS
$GENERATED_FILES $LDLIBS -o $NAME || end $?
$CC $GENERATED_FILES $LDLIBS -o $NAME || end $?
end 0
}
;
...
...
Write
Preview
Supports
Markdown
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