Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
duck
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jp7g21
duck
Commits
5d010dbc
Commit
5d010dbc
authored
3 years ago
by
jp7g21
Browse files
Options
Downloads
Patches
Plain Diff
Drake working
parent
f2fa6ad9
Branches
Branches containing commit
No related tags found
Loading
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
drake/drake
+15
-0
15 additions, 0 deletions
drake/drake
drake/test1/Makefile
+9
-0
9 additions, 0 deletions
drake/test1/Makefile
drake/test1/main.c
+9
-0
9 additions, 0 deletions
drake/test1/main.c
drake/test1/stuff.c
+7
-0
7 additions, 0 deletions
drake/test1/stuff.c
with
40 additions
and
0 deletions
drake/drake
0 → 100755
+
15
−
0
View file @
5d010dbc
#!/bin/bash
make
"
$@
"
res
=
$?
if
[
$res
!=
0
]
then
echo
":("
else
echo
":)"
fi
exit
$res
This diff is collapsed.
Click to expand it.
drake/test1/Makefile
0 → 100644
+
9
−
0
View file @
5d010dbc
objs
:=
main.o stuff.o
main
:
$(objs)
cc main.o stuff.o
-o
main
.PHONY
:
clean
clean
:
rm
-f
$(
objs
)
main
This diff is collapsed.
Click to expand it.
drake/test1/main.c
0 → 100644
+
9
−
0
View file @
5d010dbc
#include
<stdio.h>
int
do_stuff
(
void
);
int
main
(
void
)
{
do_stuff
();
return
0
;
}
This diff is collapsed.
Click to expand it.
drake/test1/stuff.c
0 → 100644
+
7
−
0
View file @
5d010dbc
#include
<stdio.h>
int
do_stuff
(
void
)
{
printf
(
"hello, world
\n
"
)
return
0
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment