mirror of
https://tildegit.org/sloum/gemini-vim-syntax.git
synced 2024-08-14 22:46:59 +00:00
Adds support for windows in makefile
This commit is contained in:
parent
81b7c93c96
commit
deb8833369
1 changed files with 7 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -3,11 +3,15 @@ UNAME := $(shell uname -s)
|
||||||
SYN := /syntax
|
SYN := /syntax
|
||||||
FT := /ftdetect
|
FT := /ftdetect
|
||||||
|
|
||||||
|
ifeq ($(OS), Windows_NT)
|
||||||
|
ROOT := $(HOME)/vimfiles
|
||||||
|
else
|
||||||
ifeq ($(UNAME), Haiku)
|
ifeq ($(UNAME), Haiku)
|
||||||
ROOT = /boot/home/config/settings/vim
|
ROOT := /boot/home/config/settings/vim
|
||||||
else
|
else
|
||||||
ROOT := ~/.vim
|
ROOT := ~/.vim
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install: ./syntax/gmi.vim ./ftdetect/gmi.vim
|
install: ./syntax/gmi.vim ./ftdetect/gmi.vim
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue