11 lines
177 B
Makefile
11 lines
177 B
Makefile
|
|
.PHONY: all
|
||
|
|
|
||
|
|
all: install
|
||
|
|
|
||
|
|
install:
|
||
|
|
install -d $(DEST_DIR)/
|
||
|
|
install -d $(DEST_DIR)/include/
|
||
|
|
for file in include/*; do \
|
||
|
|
install -m 644 $$file $(DEST_DIR)/include/; \
|
||
|
|
done
|