summaryrefslogtreecommitdiff
path: root/nuttx/examples/nettest/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-02-07 02:46:14 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-02-07 02:46:14 +0000
commit45fe3f79433403d54626d830d2f0932e0af57f2d (patch)
treebde80e579237686941d9bb86a3c874d45e8b38a8 /nuttx/examples/nettest/Makefile
parent013721830aa3d28dcdc1002ecc680954670d35cf (diff)
downloadpx4-nuttx-45fe3f79433403d54626d830d2f0932e0af57f2d.tar.gz
px4-nuttx-45fe3f79433403d54626d830d2f0932e0af57f2d.tar.bz2
px4-nuttx-45fe3f79433403d54626d830d2f0932e0af57f2d.zip
Fix compilation problems with eZ80 targets
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1473 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/nettest/Makefile')
-rw-r--r--nuttx/examples/nettest/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/examples/nettest/Makefile b/nuttx/examples/nettest/Makefile
index 0dd12ccbf..6677f847f 100644
--- a/nuttx/examples/nettest/Makefile
+++ b/nuttx/examples/nettest/Makefile
@@ -41,9 +41,9 @@ TARG_AOBJS = $(TARG_ASRCS:.S=$(OBJEXT))
TARG_CSRCS = nettest.c
ifeq ($(CONFIG_EXAMPLE_NETTEST_SERVER),y)
-TARG_CSRCS += nettest-server.c
+TARG_CSRCS += nettest_server.c
else
-TARG_CSRCS += nettest-client.c
+TARG_CSRCS += nettest_client.c
endif
TARG_COBJS = $(TARG_CSRCS:.c=$(OBJEXT))
@@ -61,9 +61,9 @@ endif
HOST_SRCS = host.c
ifeq ($(CONFIG_EXAMPLE_NETTEST_SERVER),y)
-HOST_SRCS += nettest-client.c
+HOST_SRCS += nettest_client.c
else
-HOST_SRCS += nettest-server.c
+HOST_SRCS += nettest_server.c
endif
HOST_OBJS = $(HOST_SRCS:.c=.o)