# 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
