
all:
	gcc -lncurses -O2 -Wall -D__IOCTL -o bwm-ng bwm-ng.c parsing.c options.c output.c

install: all
	cp bwm-ng /usr/local/bin

clean:
	-rm -f *~ *.o bwm-ng 

