Commit f2e5578b authored by Liam E. Roeth's avatar Liam E. Roeth

swap makefile and Makefile

parent 9b8389bc
run : main.out
./main.out
.PHONY : run all test test2
.PHONY : run all test
test.out : tabify llist.c llist.h test.c
gcc -ggdb -std=c99 -o test.out llist.c test.c
test.out : llist.c llist.h test.c
gcc -o test.out llist.c test.c
main.out : tabify llist.c llist.h main.c
main.out : llist.c llist.h main.c
gcc -o main.out llist.c main.c
test2.out : tabify llist.c llist.h test2.c
gcc -o test2.out llist.c test2.c
all : test.out main.out
test : test.out
./test.out
test2 : test2.out
./test2.out
tabify : *.h *.c
for file in *.c *.h;\
do\
unexpand -t4 --first-only $$file >temp ;\
mv temp $$file;\
done
touch tabify
gitindex : tabify *.c *.h
git add *.c *.h
run : main.out
./main.out
.PHONY : run all test
.PHONY : run all test test2
test.out : llist.c llist.h test.c
gcc -o test.out llist.c test.c
test.out : tabify llist.c llist.h test.c
gcc -ggdb -std=c99 -o test.out llist.c test.c
main.out : llist.c llist.h main.c
main.out : tabify llist.c llist.h main.c
gcc -o main.out llist.c main.c
test2.out : tabify llist.c llist.h test2.c
gcc -o test2.out llist.c test2.c
all : test.out main.out
test : test.out
./test.out
test2 : test2.out
./test2.out
tabify : *.h *.c
for file in *.c *.h;\
do\
unexpand -t4 --first-only $$file >temp ;\
mv temp $$file;\
done
touch tabify
gitindex : tabify *.c *.h
git add *.c *.h
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