1
0
mirror of https://github.com/Tha14/toxic.git synced 2026-01-28 05:53:14 +01:00

Makefile: add uninstall target

This commit is contained in:
Ansa89
2015-04-03 13:04:28 +02:00
committed by cnhenry
parent 37e7b4c3d3
commit fd85d8f87b
2 changed files with 31 additions and 6 deletions

View File

@@ -1,12 +1,13 @@
# Help target
help:
@echo "-- Targets --"
@echo " all: Build toxic and documentation [DEFAULT]"
@echo " toxic: Build toxic"
@echo " doc: Build documentation"
@echo " install: Build toxic and install it in PREFIX (default PREFIX is \"$(abspath $(PREFIX))\")"
@echo " clean: Remove built files"
@echo " help: This help"
@echo " all: Build toxic and documentation [DEFAULT]"
@echo " toxic: Build toxic"
@echo " doc: Build documentation"
@echo " install: Build toxic and install it in PREFIX (default PREFIX is \"$(abspath $(PREFIX))\")"
@echo " uninstall: Remove toxic from PREFIX (default PREFIX is \"$(abspath $(PREFIX))\")"
@echo " clean: Remove built files"
@echo " help: This help"
@echo
@echo "-- Variables --"
@echo " DISABLE_X11: Set to \"1\" to force building without X11 support"