17 lines
310 B
Makefile
17 lines
310 B
Makefile
# Small makefile to make compiling watershell easier to do
|
|
# TODO implement C and Linker FLAGS if desired
|
|
|
|
COMPILER=gcc
|
|
|
|
all: watershell
|
|
|
|
debug:
|
|
$(COMPILER) watershell.c -DDEBUG=1 -static -o watershell
|
|
|
|
.PHONY: watershell
|
|
watershell:
|
|
$(COMPILER) watershell.c -o watershell -static
|
|
|
|
clean:
|
|
rm watershell *.o
|