summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-05-20 11:14:01 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-05-20 11:14:51 +0200
commit32bbd337ae29627c88dcdf6882e02e5a8d1b6f98 (patch)
tree2fcccf06cbb3e1d6bc85e21f3b0d68329555390b
parentAdd a README for using waf. (diff)
downloadrtems-libbsd-32bbd337ae29627c88dcdf6882e02e5a8d1b6f98.tar.bz2
mghttpd: Install header file
-rw-r--r--Makefile2
-rwxr-xr-xmakefile.py2
2 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4f7d78b1..0e55577e 100644
--- a/Makefile
+++ b/Makefile
@@ -1579,6 +1579,8 @@ install: $(LIB)
cd rtemsbsd/include ; for i in `find . -type d` ; do \
install -d $(INCLUDE_DIR)/$$i ; \
install -m 644 $$i/*.h $(INCLUDE_DIR)/$$i ; done
+ install -d $(INCLUDE_DIR)/mghttpd
+ install -m 644 rtemsbsd/mghttpd/mongoose.h $(INCLUDE_DIR)/mghttpd
cd freebsd/include ; for i in `find . -type d` ; do \
install -d $(INCLUDE_DIR)/$$i ; \
install -m 644 $$i/*.h $(INCLUDE_DIR)/$$i ; done
diff --git a/makefile.py b/makefile.py
index ad0c734a..ea041bdc 100755
--- a/makefile.py
+++ b/makefile.py
@@ -276,6 +276,8 @@ class ModuleManager(builder.ModuleManager):
'\tcd rtemsbsd/include ; for i in `find . -type d` ; do \\\n' \
'\t install -d $(INCLUDE_DIR)/$$i ; \\\n' \
'\t install -m 644 $$i/*.h $(INCLUDE_DIR)/$$i ; done\n' \
+ '\tinstall -d $(INCLUDE_DIR)/mghttpd\n' \
+ '\tinstall -m 644 rtemsbsd/mghttpd/mongoose.h $(INCLUDE_DIR)/mghttpd\n' \
'\tcd freebsd/include ; for i in `find . -type d` ; do \\\n' \
'\t install -d $(INCLUDE_DIR)/$$i ; \\\n' \
'\t install -m 644 $$i/*.h $(INCLUDE_DIR)/$$i ; done\n' \