mirror of
https://github.com/pgrondek/config.git
synced 2024-11-26 05:35:30 +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)
|