aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: ba5a6243feb6cfc2cfc334cf72b7556542c5f3de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)