Add a simple Makefile for ease of compiling and teardown

This commit is contained in:
burrches
2019-08-22 20:03:05 -04:00
parent 5e33d29a33
commit 64168381a6
2 changed files with 19 additions and 0 deletions

8
Makefile Normal file
View File

@@ -0,0 +1,8 @@
# Small makefile to make compiling watershell easier to do
# TODO implement C and Linker FLAGS if desired
watershell:
gcc watershell.c -o $@
clean:
rm watershell *.o