bf403d30a1
Signing key tooling, machine specific diff tools, etc
18 lines
364 B
Makefile
18 lines
364 B
Makefile
# -*- mode: makefile-gmake; -*-
|
|
SRC_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
SOURCE := $(SRC_DIR)/gitconfig
|
|
TARGET := ~/.gitconfig
|
|
|
|
include ../lib/shared.mk
|
|
|
|
init:
|
|
$(report) header "Setting up gitconfig"
|
|
$(mk_link) $(SOURCE) $(TARGET)
|
|
touch $(TARGET).local
|
|
|
|
up: init
|
|
|
|
down:
|
|
$(report) header "Removing gitconfig"
|
|
$(rm_link) $(TARGET)
|