summaryrefslogtreecommitdiff
path: root/apps/examples/udp
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-01 14:30:43 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-01 14:30:43 +0000
commit37701ac70a3047f8f161628e6f59dfacc185233f (patch)
treea9e1ace6553b36b63ca53dbda5853204841cc10d /apps/examples/udp
parentf56ab8abdd81316f1c6d7430359179062724cebf (diff)
downloadnuttx-37701ac70a3047f8f161628e6f59dfacc185233f.tar.gz
nuttx-37701ac70a3047f8f161628e6f59dfacc185233f.tar.bz2
nuttx-37701ac70a3047f8f161628e6f59dfacc185233f.zip
Remove .built_always
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3449 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples/udp')
-rw-r--r--apps/examples/udp/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/examples/udp/Makefile b/apps/examples/udp/Makefile
index 36aa0a169..30a48baed 100644
--- a/apps/examples/udp/Makefile
+++ b/apps/examples/udp/Makefile
@@ -1,7 +1,7 @@
############################################################################
# apps/examples/udp/Makefile
#
-# Copyright (C) 2007-2008, 2010 Gregory Nutt. All rights reserved.
+# Copyright (C) 2007-2008, 2011 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
#
# Redistribution and use in source and binary forms, with or without
@@ -79,7 +79,7 @@ ROOTDEPPATH = --dep-path .
VPATH =
all: .built
-.PHONY: .built clean depend disclean
+.PHONY: clean depend disclean
$(TARG_AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@)
@@ -91,7 +91,6 @@ $(TARG_BIN): $(TARG_OBJS) $(HOST_BIN)
@( for obj in $(TARG_OBJS) ; do \
$(call ARCHIVE, $@, $${obj}); \
done ; )
- @touch .built
$(HOST_OBJS): %.o: %.c
$(HOSTCC) -c $(HOSTCFLAGS) $< -o $@
@@ -100,6 +99,7 @@ $(HOST_BIN): $(HOST_OBJS)
$(HOSTCC) $(HOSTLDFLAGS) $(HOST_OBJS) -o $@
.built: $(TARG_BIN) $(HOST_BIN)
+ @touch .built
context: