summaryrefslogtreecommitdiff
path: root/nuttx/examples/mount/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-08 17:06:21 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-08 17:06:21 +0000
commitaaf14056e435090f70b7e82d42874d090d1a1e35 (patch)
tree41a2ddea543958ebb2c2d0e4018edd3275b690f2 /nuttx/examples/mount/Makefile
parent6be6922d92309de635a5c222d94224adab2f73e5 (diff)
downloadpx4-nuttx-aaf14056e435090f70b7e82d42874d090d1a1e35.tar.gz
px4-nuttx-aaf14056e435090f70b7e82d42874d090d1a1e35.tar.bz2
px4-nuttx-aaf14056e435090f70b7e82d42874d090d1a1e35.zip
Make logic reorganized for non-GNU toolchain
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@528 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/mount/Makefile')
-rw-r--r--nuttx/examples/mount/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/nuttx/examples/mount/Makefile b/nuttx/examples/mount/Makefile
index 7f40b93db..bee957d07 100644
--- a/nuttx/examples/mount/Makefile
+++ b/nuttx/examples/mount/Makefile
@@ -49,15 +49,14 @@ BIN = lib$(CONFIG_EXAMPLE)$(LIBEXT)
all: $(BIN)
$(AOBJS): %$(OBJEXT): %.S
- $(CC) -c $(CFLAGS) $< -o $@
+ $(call ASSEMBLE, $<, $@)
$(COBJS): %$(OBJEXT): %.c
- $(CC) -c $(CFLAGS) $< -o $@
+ $(call COMPILE, $<, $@)
$(BIN): $(OBJS)
@( for obj in $(OBJS) ; do \
- $(AR) $@ $${obj} || \
- { echo "$(AR) $@ $obj FAILED!" ; exit 1 ; } ; \
+ $(call ARCHIVE, $@, $${obj}); \
done ; )
.depend: Makefile $(SRCS)
@@ -67,7 +66,7 @@ $(BIN): $(OBJS)
depend: .depend
clean:
- rm -f $(BIN) *.o *.rel *.asm *.lst *.sym *.adb *~
+ rm -f $(BIN) *.o *.obj *.rel *.asm *.lst *.sym *.adb *~
distclean: clean
rm -f Make.dep .depend