2011-03-19 22:04:13 +01:00
|
|
|
#############################################################################
|
|
|
|
# apps/netutils/thttpd/Makefile
|
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2011-03-19 22:04:13 +01:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-19 22:04:13 +01:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2011-03-19 22:04:13 +01:00
|
|
|
#
|
|
|
|
#############################################################################
|
|
|
|
|
2020-05-20 06:35:03 +02:00
|
|
|
include $(APPDIR)/Make.defs
|
2016-06-07 16:43:21 +02:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
# THTTPD Library
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_NET_TCP),y)
|
2015-06-02 18:45:48 +02:00
|
|
|
CSRCS += libhttpd.c thttpd_cgi.c thttpd_alloc.c thttpd_strings.c timers.c
|
2019-10-06 14:14:39 +02:00
|
|
|
CSRCS += fdwatch.c tdate_parse.c thttpd.c
|
2014-09-07 15:05:54 +02:00
|
|
|
endif
|
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
# CGI binaries (examples only, not used in the build)
|
|
|
|
|
2015-06-02 18:45:48 +02:00
|
|
|
ifeq ($(CONFIG_THTTPD_NXFLAT),y)
|
|
|
|
SUBDIR_BIN1 = phf
|
|
|
|
SUBDIR_BIN2 = redirect
|
|
|
|
SUBDIR_BIN3 = ssi
|
|
|
|
SUBDIR_BIN += cgi-bin$(DELIM)$(SUBDIR_BIN1) cgi-bin$(DELIM)$(SUBDIR_BIN2) cgi-bin$(DELIM)$(SUBDIR_BIN3)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_THTTPD_BINFS),y)
|
2018-09-03 17:29:56 +02:00
|
|
|
CSRCS += phf.c redirect.c ssi.c
|
2020-05-21 21:11:30 +02:00
|
|
|
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(APPDIR)$(DELIM)netutils$(DELIM)thttpd"}
|
2015-06-19 02:18:53 +02:00
|
|
|
DEPPATHS += --dep-path cgi-src
|
2015-06-02 18:45:48 +02:00
|
|
|
VPATH += :cgi-src
|
|
|
|
|
2019-10-06 14:14:39 +02:00
|
|
|
PROGNAME = phf redirect ssi
|
|
|
|
PRIORITY = $(CONFIG_THTTPD_CGI_PRIORITY)
|
|
|
|
STACKSIZE = $(CONFIG_THTTPD_CGI_STACKSIZE)
|
2011-03-19 22:04:13 +01:00
|
|
|
endif
|
|
|
|
|
2018-09-03 17:29:56 +02:00
|
|
|
context:: $(SUBDIR_BIN)
|
2011-04-07 01:01:06 +02:00
|
|
|
|
2015-06-02 18:45:48 +02:00
|
|
|
ifeq ($(CONFIG_THTTPD_NXFLAT),y)
|
2011-03-19 22:04:13 +01:00
|
|
|
cgi-bin:
|
2012-11-17 19:54:53 +01:00
|
|
|
$(Q) mkdir cgi-bin
|
2011-03-19 22:04:13 +01:00
|
|
|
|
2015-06-02 18:45:48 +02:00
|
|
|
cgi-src$(DELIM)$(SUBDIR_BIN1):
|
2012-11-17 19:54:53 +01:00
|
|
|
$(Q) $(MAKE) -C cgi-src $(SUBDIR_BIN1)
|
2011-03-19 22:04:13 +01:00
|
|
|
|
2015-06-02 18:45:48 +02:00
|
|
|
cgi-bin$(DELIM)$(SUBDIR_BIN1): cgi-bin cgi-src$(DELIM)$(SUBDIR_BIN1)
|
|
|
|
$(Q) cp -a cgi-src$(DELIM)$(SUBDIR_BIN1) $@
|
2011-03-19 22:04:13 +01:00
|
|
|
|
2015-06-02 18:45:48 +02:00
|
|
|
cgi-src$(DELIM)$(SUBDIR_BIN2):
|
2012-11-17 19:54:53 +01:00
|
|
|
$(Q) $(MAKE) -C cgi-src $(SUBDIR_BIN2)
|
2011-03-19 22:04:13 +01:00
|
|
|
|
2015-06-02 18:45:48 +02:00
|
|
|
cgi-bin$(DELIM)$(SUBDIR_BIN2): cgi-bin cgi-src$(DELIM)$(SUBDIR_BIN2)
|
|
|
|
$(Q) cp -a cgi-src$(DELIM)$(SUBDIR_BIN2) $@
|
2011-03-19 22:04:13 +01:00
|
|
|
|
2015-06-02 18:45:48 +02:00
|
|
|
cgi-src$(DELIM)$(SUBDIR_BIN3):
|
2012-11-17 19:54:53 +01:00
|
|
|
$(Q) $(MAKE) -C cgi-src $(SUBDIR_BIN3)
|
2011-03-19 22:04:13 +01:00
|
|
|
|
2015-06-02 18:45:48 +02:00
|
|
|
cgi-bin$(DELIM)$(SUBDIR_BIN3): cgi-bin cgi-src$(DELIM)$(SUBDIR_BIN3)
|
|
|
|
$(Q) cp -a cgi-src$(DELIM)$(SUBDIR_BIN3) $@
|
2011-03-19 22:04:13 +01:00
|
|
|
endif
|
|
|
|
|
2018-09-03 17:29:56 +02:00
|
|
|
include $(APPDIR)/Application.mk
|