.PHONY: all install clean

MKDIR_P     = install -m 755 -d
INSTALL     = install
INSTALL_DIR = /usr/local/include/
HEADERS     = xmp.h xmp_index_macro.h xmp_comm_macro.h xmp_func_decl.h xmp_tlog.h xmp_scalasca.h xmp_gpu_func.hpp xmp_data_struct.h xmp_constant.h xmp_io.h xmp_lock.h

all:
install: $(HEADERS)
	$(MKDIR_P) $(INSTALL_DIR)
	$(INSTALL) $^ $(INSTALL_DIR)

clean:
