summaryrefslogtreecommitdiff
path: root/nuttx/examples/dhcpd/Makefile.host
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/examples/dhcpd/Makefile.host')
-rw-r--r--nuttx/examples/dhcpd/Makefile.host5
1 files changed, 2 insertions, 3 deletions
diff --git a/nuttx/examples/dhcpd/Makefile.host b/nuttx/examples/dhcpd/Makefile.host
index df587fdc8..8e89a1594 100644
--- a/nuttx/examples/dhcpd/Makefile.host
+++ b/nuttx/examples/dhcpd/Makefile.host
@@ -1,7 +1,7 @@
############################################################################
# examples/dhcpd/Makefile.host
#
-# Copyright (C) 2007 Gregory Nutt. All rights reserved.
+# Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
#
# Redistribution and use in source and binary forms, with or without
@@ -37,7 +37,7 @@ WD = ${shell pwd}
TOPDIR = $(WD)/../..
include $(TOPDIR)/Make.defs
-OBJS = daemon.o1 dhcpd.o1
+OBJS = host.o1 dhcpd.o1
BIN = dhcpd
HOSTCFLAGS += -DCONFIG_NETUTILS_DHCPD_HOST=1
@@ -51,7 +51,6 @@ all: $(BIN)
.PHONY: clean context clean_context distclean
$(OBJS): %.o1: %.c
- echo $(VPATH)/dhcpd.c
$(HOSTCC) -c $(HOSTCFLAGS) $< -o $@
$(BIN): $(OBJS)