22 lines
442 B
Makefile
22 lines
442 B
Makefile
SRC := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
|
|
include ../lib/shared.mk
|
|
TARGET := $(XDG_DIR)/tridactyl
|
|
|
|
|
|
install: | init update
|
|
|
|
init:
|
|
ifeq ($(shell $(call cmd_exist,firefox) || $(IS_MAC) ; echo $$? ), 0)
|
|
$(info => Setting up Tridacyl)
|
|
$(mk_link) $(SRC) $(TARGET)
|
|
else
|
|
$(report) warn "This doesn't seem to be an env for Tridactyl. Skipping."
|
|
endif
|
|
|
|
update:
|
|
|
|
remove:
|
|
$(info => Remvoing tridactyl )
|
|
$(rm_link) $(TARGET)
|