17 lines
341 B
Makefile
17 lines
341 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)
|
|
|
|
up: init
|
|
|
|
down:
|
|
$(report) header "Removing gitconfig"
|
|
$(rm_link) $(TARGET)
|