xbyak/Makefile
MITSUNARI Shigeo cbb4ca2178 first commit
2010-04-16 10:33:04 +09:00

17 lines
235 B
Makefile

PREFIX=/usr/local
INSTALL_DIR=$(PREFIX)/include/xbyak
all:
make -C sample
clean:
make -C sample clean
install:
mkdir -p $(INSTALL_DIR)
cp -pR xbyak/*.h $(INSTALL_DIR)
uninstall:
rm -i $(INSTALL_DIR)/*.h
rmdir $(INSTALL_DIR)