2007-09-22 21:56:13 +02:00
|
|
|
############################################################################
|
2008-01-08 01:19:24 +01:00
|
|
|
# netutils/Makefile
|
2007-08-27 01:12:17 +02:00
|
|
|
#
|
2009-03-18 00:45:41 +01:00
|
|
|
# Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
|
2007-08-27 01:12:17 +02:00
|
|
|
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
2007-09-22 21:56:13 +02:00
|
|
|
############################################################################
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
-include $(TOPDIR)/Make.defs
|
|
|
|
|
2007-09-01 20:06:15 +02:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
2007-08-27 01:12:17 +02:00
|
|
|
include uiplib/Make.defs
|
2007-11-22 22:59:30 +01:00
|
|
|
ifeq ($(CONFIG_NET_TCP),y)
|
2007-08-27 01:12:17 +02:00
|
|
|
include smtp/Make.defs
|
|
|
|
include telnetd/Make.defs
|
|
|
|
include webclient/Make.defs
|
|
|
|
include webserver/Make.defs
|
2007-11-22 19:36:46 +01:00
|
|
|
endif
|
2007-11-19 19:17:23 +01:00
|
|
|
ifeq ($(CONFIG_NET_UDP),y)
|
|
|
|
include dhcpc/Make.defs
|
2007-11-30 21:46:29 +01:00
|
|
|
include dhcpd/Make.defs
|
2007-11-19 19:17:23 +01:00
|
|
|
include resolv/Make.defs
|
2008-09-06 00:47:42 +02:00
|
|
|
ifneq ($(CONFIG_NFILE_DESCRIPTORS),0)
|
|
|
|
include tftpc/Make.defs
|
|
|
|
endif
|
2007-11-19 19:17:23 +01:00
|
|
|
endif
|
2007-08-27 01:12:17 +02:00
|
|
|
endif
|
|
|
|
|
2008-09-06 00:47:42 +02:00
|
|
|
SUBDIRS = uiplib dhcpc dhcpd resolv smtp telnetd webclient webserver tftpc
|
2008-01-10 19:23:08 +01:00
|
|
|
|
2007-11-30 21:46:29 +01:00
|
|
|
ASRCS = $(UIPLIB_ASRCS) $(DHCPC_ASRCS) $(DHCPD_ASRCS) $(RESOLV_ASRCS) \
|
2008-09-06 00:47:42 +02:00
|
|
|
$(SMTP_ASRCS) $(TELNETD_ASRCS) $(WEBCLIENT_ASRCS) $(WEBSERVER_ASRCS) \
|
|
|
|
$(TFTPC_ASRCS)
|
2007-08-27 01:12:17 +02:00
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
|
|
|
|
2007-11-30 21:46:29 +01:00
|
|
|
CSRCS = $(UIPLIB_CSRCS) $(DHCPC_CSRCS) $(DHCPD_CSRCS) $(RESOLV_CSRCS) \
|
2008-09-06 00:47:42 +02:00
|
|
|
$(SMTP_CSRCS) $(TELNETD_CSRCS) $(WEBCLIENT_CSRCS) $(WEBSERVER_CSRCS) \
|
|
|
|
$(TFTPC_CSRCS)
|
2007-08-27 01:12:17 +02:00
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
|
|
|
|
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
|
|
|
|
|
|
|
BIN = libnetutils$(LIBEXT)
|
|
|
|
|
2008-09-06 00:47:42 +02:00
|
|
|
VPATH = uiplib:dhcpc:dhcpd:resolv:smtp:telnetd:webclient:webserver:tftpc
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
all: $(BIN)
|
|
|
|
|
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call ASSEMBLE, $<, $@)
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
$(COBJS): %$(OBJEXT): %.c
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call COMPILE, $<, $@)
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
$(BIN): $(OBJS)
|
2007-09-23 22:45:30 +02:00
|
|
|
@( for obj in $(OBJS) ; do \
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call ARCHIVE, $@, $${obj}); \
|
2007-08-27 01:12:17 +02:00
|
|
|
done ; )
|
|
|
|
|
|
|
|
.depend: Makefile $(SRCS)
|
2007-09-01 20:06:15 +02:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
2007-11-30 21:46:29 +01:00
|
|
|
@$(MKDEP) --dep-path . --dep-path uiplib --dep-path dhcpc --dep-path dhcpd \
|
|
|
|
--dep-path smtp --dep-path webclient --dep-path resolv \
|
2008-09-06 00:47:42 +02:00
|
|
|
--dep-path telnetd --dep-path webserver --dep-path tftpc \
|
2007-08-27 01:12:17 +02:00
|
|
|
$(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
|
|
|
|
endif
|
2007-09-23 22:45:30 +02:00
|
|
|
@touch $@
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-11-22 13:48:40 +01:00
|
|
|
depend: .depend
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
clean:
|
2008-01-10 19:23:08 +01:00
|
|
|
@rm -f $(BIN) *~ .*.swp
|
|
|
|
$(call CLEAN)
|
|
|
|
@( for dir in $(SUBDIRS); do \
|
2008-02-20 21:05:38 +01:00
|
|
|
rm -f $${dir}/*~ $${dir}/.*.swp; \
|
2008-01-10 19:23:08 +01:00
|
|
|
done ; )
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
distclean: clean
|
2007-09-23 22:45:30 +02:00
|
|
|
@rm -f Make.dep .depend
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
-include Make.dep
|