From 546056695c7e0b25d8bf8d8773a26ce9260656b5 Mon Sep 17 00:00:00 2001 From: Jindra Dolezy Date: Wed, 1 Apr 2015 21:12:59 +0200 Subject: [PATCH] Moved httpd files to separate dir --- Makefile | 2 +- {user => httpd}/auth.c | 0 {user => httpd}/auth.h | 0 {user => httpd}/base64.c | 0 {user => httpd}/base64.h | 0 {user => httpd}/httpd.c | 0 {user => httpd}/httpd.h | 0 {user => httpd}/httpdespfs.c | 0 {user => httpd}/httpdespfs.h | 0 9 files changed, 1 insertion(+), 1 deletion(-) rename {user => httpd}/auth.c (100%) rename {user => httpd}/auth.h (100%) rename {user => httpd}/base64.c (100%) rename {user => httpd}/base64.h (100%) rename {user => httpd}/httpd.c (100%) rename {user => httpd}/httpd.h (100%) rename {user => httpd}/httpdespfs.c (100%) rename {user => httpd}/httpdespfs.h (100%) diff --git a/Makefile b/Makefile index e8e68d2..29de765 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ TARGET = httpd # which modules (subdirectories) of the project to include in compiling #MODULES = driver user lwip/api lwip/app lwip/core lwip/core/ipv4 lwip/netif -MODULES = espfs user +MODULES = espfs httpd user EXTRA_INCDIR = include \ . \ lib/heatshrink/ diff --git a/user/auth.c b/httpd/auth.c similarity index 100% rename from user/auth.c rename to httpd/auth.c diff --git a/user/auth.h b/httpd/auth.h similarity index 100% rename from user/auth.h rename to httpd/auth.h diff --git a/user/base64.c b/httpd/base64.c similarity index 100% rename from user/base64.c rename to httpd/base64.c diff --git a/user/base64.h b/httpd/base64.h similarity index 100% rename from user/base64.h rename to httpd/base64.h diff --git a/user/httpd.c b/httpd/httpd.c similarity index 100% rename from user/httpd.c rename to httpd/httpd.c diff --git a/user/httpd.h b/httpd/httpd.h similarity index 100% rename from user/httpd.h rename to httpd/httpd.h diff --git a/user/httpdespfs.c b/httpd/httpdespfs.c similarity index 100% rename from user/httpdespfs.c rename to httpd/httpdespfs.c diff --git a/user/httpdespfs.h b/httpd/httpdespfs.h similarity index 100% rename from user/httpdespfs.h rename to httpd/httpdespfs.h