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
10
Makefile
10
Makefile
|
@ -3,10 +3,14 @@ UNAME := $(shell uname -s)
|
|||
SYN := /syntax
|
||||
FT := /ftdetect
|
||||
|
||||
ifeq ($(UNAME), Haiku)
|
||||
ROOT = /boot/home/config/settings/vim
|
||||
ifeq ($(OS), Windows_NT)
|
||||
ROOT := $(HOME)/vimfiles
|
||||
else
|
||||
ROOT := ~/.vim
|
||||
ifeq ($(UNAME), Haiku)
|
||||
ROOT := /boot/home/config/settings/vim
|
||||
else
|
||||
ROOT := ~/.vim
|
||||
endif
|
||||
endif
|
||||
|
||||
.PHONY: install
|
||||
|
|
Loading…
Reference in a new issue