14 lines
240 B
Makefile
14 lines
240 B
Makefile
DESTDIR = @prefix@
|
|
|
|
wmressel:
|
|
cd src && make
|
|
|
|
clean:
|
|
cd src && make $@
|
|
|
|
install:: wmressel
|
|
@INSTALL@ -s -m 0755 src/wmressel $(DESTDIR)/bin/
|
|
@INSTALL@ -m 0644 wmressel.1 $(DESTDIR)/man/man1/
|
|
@echo "wmressel installation finished..."
|
|
|