add makefile and ignore pkg directory.
This commit is contained in:
parent
1ca2eb84f7
commit
6b1a54ea36
|
@ -1 +1 @@
|
|||
pkg/**
|
||||
pkg
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
PREFIX ?= /usr
|
||||
DESTDIR ?= $(PREFIX)/bin
|
||||
GITBASE ?= $(shell realpath $(shell git config --get remote.origin.url) | rev \
|
||||
| cut -d/ -f2- | rev)
|
||||
|
||||
.PHONY: install uninstall lix-os-pkgs
|
||||
|
||||
lix-os-pkgs:
|
||||
git clone $(GITBASE)/versions-lix-os-pkgs pkg
|
||||
|
||||
install: lix-os-pkgs
|
||||
ln -sf $(VERSIONSROOT)/versions.sh $(DESTDIR)/versions
|
||||
|
||||
uninstall:
|
||||
rm $(DESTDIR)/versions
|
Loading…
Reference in New Issue