
all:
	gcc -lcurses -Wall -o bwm-ng bwm-ng.c 

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

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

