summaryrefslogtreecommitdiff
path: root/nuttx/sched/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/sched/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/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index 205a83c83..749f1b0a7 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -142,15 +142,14 @@ BIN = libsched$(LIBEXT)
all: $(BIN)
$(AOBJS): %$(OBJEXT): %.S
- $(CC) -c $(CFLAGS) -D__ASSEMBLY__ $< -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)
@@ -160,7 +159,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 *~
if [ ! -z "$(OBJEXT)" ]; then rm -f *$(OBJEXT); fi
distclean: clean