Files
git-remote-hg/Makefile
Felipe Contreras 98c3535c3f build: add install target
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
2014-05-09 08:41:57 -05:00

15 lines
165 B
Makefile

prefix := $(HOME)
all:
test:
$(MAKE) -C test
D = $(DESTDIR)
install:
install -D -m 755 git-remote-hg \
$(D)$(prefix)/bin/git-reinremote-hg
.PHONY: all test