9 lines
170 B
Makefile
9 lines
170 B
Makefile
# 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
|