Skip to content

Instantly share code, notes, and snippets.

View nishigori's full-sized avatar
🏠
Working from home

Tak Nishigori nishigori

🏠
Working from home
View GitHub Profile
@nishigori
nishigori / vim-build.sh
Last active September 26, 2015 16:47 — forked from tyru/build
Vim's build script.
#!/bin/sh
# Remove previous configure cache
if [ "$1" = "-f" ]; then
make distclean || rm src/auto/config.cache
fi
# configure & make
./configure \
--prefix=/usr/local \