aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2010-04-16 10:33:04 +0900
committerMITSUNARI Shigeo <[email protected]>2010-04-16 10:33:04 +0900
commitcbb4ca2178c6bd391b48c130afececfdddc66836 (patch)
tree46c9cfe83e040443af60585e212d071f0f127ebc /Makefile
downloadxbyak-cbb4ca2178c6bd391b48c130afececfdddc66836.tar.gz
xbyak-cbb4ca2178c6bd391b48c130afececfdddc66836.zip
first commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..13012ad
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+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)
+