mirror of
https://github.com/pgrondek/config.git
synced 2024-11-22 12:03:43 +00:00
12 lines
177 B
Makefile
12 lines
177 B
Makefile
PACKAGE=redshift
|
|
BIN=/usr/bin/redshift
|
|
ROOT_APT=sudo aptitude
|
|
|
|
install_redshift: $(BIN)
|
|
|
|
$(BIN):
|
|
$(ROOT_APT) install $(PACKAGE)
|
|
|
|
clean_redshift:
|
|
$(ROOT_APT) remove $(PACKAGE)
|