Skip to content

Commit

Permalink
Removed references to bitonic_sort.h
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMarkS committed Aug 16, 2019
1 parent b5f326a commit f8cbd55
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ test: stresstest benchmark
clean:
rm -f demo multidemo stresstest benchmark

demo: demo.c sort.h bitonic_sort.h
demo: demo.c sort.h
$(CC) $(CFLAGS) demo.c -o demo

multidemo: multidemo.c sort.h bitonic_sort.h
multidemo: multidemo.c sort.h
$(CC) $(CFLAGS) multidemo.c -o multidemo

stresstest: stresstest.c sort.h bitonic_sort.h
stresstest: stresstest.c sort.h
$(CC) $(CFLAGS) stresstest.c -o stresstest

benchmark: benchmark.c sort.h bitonic_sort.h
benchmark: benchmark.c sort.h
$(CC) $(CFLAGS) benchmark.c -o benchmark

format:
Expand Down

0 comments on commit f8cbd55

Please sign in to comment.