Skip to content

Commit 90396fa

Browse files
author
Chris Careaga
authored
Merge pull request #5 from Spriithy/master
Add Makefile for clang & gcc build & clean
2 parents 968a65e + d42d06e commit 90396fa

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
clang-test:
2+
clang -O3 llist.c heap.c main.c -o heap_test
3+
./heap_test
4+
5+
gcc-test:
6+
gcc -O3 llist.c heap.c main.c -o heap_test
7+
./heap_test
8+
9+
clean:
10+
rm heap_test

0 commit comments

Comments
 (0)