Commit 5fb1e561 authored by Liam E. Roeth's avatar Liam E. Roeth

fix makefile

parent bc6c1258
......@@ -3,11 +3,11 @@ test : test.out
.PHONY : run compile test
test.out : linked_list2.c linked_list2.h main.c
gcc -o test.out linked_list2.c test.c
test.out : llist.c llist.h main.c
gcc -o test.out llist.c test.c
main.out : linked_list2.c linked_list2.h main.c
gcc -o main.out linked_list2.c main.c
main.out : llist.c llist.h main.c
gcc -o main.out llist.c main.c
compile : test.out main.out
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment