Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs24-21fa
project05b
Commits
e4ee8bbb
Commit
e4ee8bbb
authored
4 years ago
by
Caleb C. Sander
Browse files
Options
Download
Email Patches
Plain Diff
Simplify Makefile
parent
79bba4b6
master
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+1
-15
Makefile
with
1 addition
and
15 deletions
+1
-15
Makefile
View file @
e4ee8bbb
...
...
@@ -3,22 +3,8 @@ CFLAGS = -O3 -Wall -Wextra -Iinclude
all
:
bin/cache_timing bin/index_guesser bin/recover_local_secret bin/recover_protected_local_secret bin/exploit
bin/
cache_timing
:
src/cache_timing
.c lib/util.c
bin/
%
:
src/%
.c lib/util.c
$(CC)
$(CFLAGS)
$^
-o
$@
bin/index_guesser
:
src/index_guesser.c lib/util.c
$(CC)
$(CFLAGS)
$^
-o
$@
bin/recover_local_secret
:
src/recover_local_secret.c lib/util.c
$(CC)
$(CFLAGS)
$^
-o
$@
bin/recover_protected_local_secret
:
src/recover_protected_local_secret.c lib/util.c
$(CC)
$(CFLAGS)
$^
-o
$@
bin/exploit
:
src/exploit.c lib/util.c
$(CC)
$(CFLAGS)
$^
-o
$@
clean
:
rm
-f
bin/
*
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help