Skip to content

Commit

Permalink
Fix optimization, PHONY
Browse files Browse the repository at this point in the history
  • Loading branch information
danluu committed Dec 29, 2013
1 parent 7e968ca commit 7eb9b13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CC=gcc

.PHONY: tlb_benchmark test coroutine channel setjmp exception coop heapros assembly assembly64 sigaltstack
.PHONY: cache_conflict_benchmark test coroutine channel setjmp exception coop heapros assembly assembly64 sigaltstack
sigaltstack:
$(CC) -Wall -O -Wno-unused-parameter -g -ggdb \
sigaltstack.c -o sigaltstack && ./sigaltstack
Expand Down Expand Up @@ -30,7 +30,7 @@ test:
stack_engine_ubenchmark.c -o test && ./test

cache_conflict_benchmark:
$(CC) -O3 -Wall -Wextra -g -ggdb \
$(CC) -Os -Wall -Wextra -g -ggdb \
cache_conflict_benchmark.c -o cache_conflict_benchmark && ./cache_conflict_benchmark

setjmp:
Expand Down

0 comments on commit 7eb9b13

Please sign in to comment.