summaryrefslogtreecommitdiff
path: root/nuttx/examples/dhcpd/Makefile.host
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-03-18 00:29:34 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-03-18 00:29:34 +0000
commitdbd7bf12514a726f3291419721424d761c4d94c9 (patch)
tree0251b0dd4c30ae7ce1d05a0792273a84a8b152d9 /nuttx/examples/dhcpd/Makefile.host
parentfc6e2b5bee69c3930e6281f1433212660caccc3a (diff)
downloadpx4-nuttx-dbd7bf12514a726f3291419721424d761c4d94c9.tar.gz
px4-nuttx-dbd7bf12514a726f3291419721424d761c4d94c9.tar.bz2
px4-nuttx-dbd7bf12514a726f3291419721424d761c4d94c9.zip
Fix examples/dhcpd build
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1623 42af7a65-404d-4744-a932-0658087f49c3
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)