mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-25 09:48:25 -05:00
25 lines
316 B
Makefile
Executable File
25 lines
316 B
Makefile
Executable File
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)
|
|
|
|
update:
|
|
$(MAKE) -C gen
|
|
|
|
test:
|
|
$(MAKE) -C test test
|
|
|
|
.PHONY: test update
|