#botmon makefile
all: botmon

#compile and link source
botmon: botmon.c
	gcc -o botmon botmon.c -lslang

clean:
	rm -f botmon core

