summaryrefslogtreecommitdiff
path: root/nuttx/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-07-11 23:40:17 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-07-11 23:40:17 +0000
commit489c0b453b4e44764516409b62cc73e2c6149b75 (patch)
tree21820964be829a96a57b4e8a6d2bbca1a6c5f794 /nuttx/Makefile
parentd357fd30cd6855f40dedf8050ee45067d0ee281f (diff)
downloadpx4-nuttx-489c0b453b4e44764516409b62cc73e2c6149b75.tar.gz
px4-nuttx-489c0b453b4e44764516409b62cc73e2c6149b75.tar.bz2
px4-nuttx-489c0b453b4e44764516409b62cc73e2c6149b75.zip
Add framework for thttpd
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1975 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/Makefile')
-rw-r--r--nuttx/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/nuttx/Makefile b/nuttx/Makefile
index fe917e2bc..c0b73406f 100644
--- a/nuttx/Makefile
+++ b/nuttx/Makefile
@@ -116,7 +116,7 @@ endif
# Add libraries for network support
ifeq ($(CONFIG_NET),y)
-LINKLIBS += net/libnet$(LIBEXT) netutils/libnetutils$(LIBEXT)
+LINKLIBS += net/libnet$(LIBEXT) netutils/libnetutils$(LIBEXT) netutils/libthttpd$(LIBEXT)
endif
# Add libraries for file system support
@@ -226,6 +226,9 @@ net/libnet$(LIBEXT): context
netutils/libnetutils$(LIBEXT): context
@$(MAKE) -C netutils TOPDIR="$(TOPDIR)" libnetutils$(LIBEXT)
+netutils/libthttpd$(LIBEXT): context
+ @$(MAKE) -C netutils TOPDIR="$(TOPDIR)" libthttpd$(LIBEXT)
+
fs/libfs$(LIBEXT): context
@$(MAKE) -C fs TOPDIR="$(TOPDIR)" libfs$(LIBEXT)