19 lines
366 B
Makefile
19 lines
366 B
Makefile
# -*- mode: makefile-gmake; -*-
|
|
SRC_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
SOURCE := $(SRC_DIR)/gitconfig
|
|
TARGET := ~/.gitconfig
|
|
|
|
include ../lib/shared.mk
|
|
|
|
install: | init update
|
|
|
|
init:
|
|
$(report) header "Setting up gitconfig"
|
|
$(mk_link) $(SOURCE) $(TARGET)
|
|
|
|
update:
|
|
|
|
remove:
|
|
$(report) header "Removing gitconfig"
|
|
$(rm_link) $(TARGET)
|