diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-03-31 14:54:49 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-03-31 14:54:49 +0000 |
commit | c5569d8fc9baaf08e1576bf4dd5eb0b990d86153 (patch) | |
tree | 4c367ace020204f39e601a915b2314bb21065c95 | |
parent | 098780ea7b5df30187198d9970c70d1af9fb5725 (diff) | |
download | ChibiOS-c5569d8fc9baaf08e1576bf4dd5eb0b990d86153.tar.gz ChibiOS-c5569d8fc9baaf08e1576bf4dd5eb0b990d86153.tar.bz2 ChibiOS-c5569d8fc9baaf08e1576bf4dd5eb0b990d86153.zip |
Fixed bug 2700690.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@858 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | ports/MSP430/rules.mk | 2 | ||||
-rw-r--r-- | readme.txt | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/ports/MSP430/rules.mk b/ports/MSP430/rules.mk index 7509ca662..219eef4ac 100644 --- a/ports/MSP430/rules.mk +++ b/ports/MSP430/rules.mk @@ -75,7 +75,7 @@ $(ASMOBJS) : %.o : %.s clean:
-rm -f $(OBJS)
- -rm -f $(ACSRC:.c=.lst) $(TCSRC:.c=.lst) $(ACPPSRC:.cpp=.lst) $(TCPPSRC:.cpp=.lst) $(ASMSRC:.s=.lst)
+ -rm -f $(CSRC:.c=.lst) $(CPPSRC:.cpp=.lst) $(ASMSRC:.s=.lst)
-rm -f $(PROJECT).elf $(PROJECT).dmp $(PROJECT).map $(PROJECT).hex $(PROJECT).bin
-rm -fR .dep
diff --git a/readme.txt b/readme.txt index cc79ef604..2aac0ab07 100644 --- a/readme.txt +++ b/readme.txt @@ -73,8 +73,9 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process, *****************************************************************************
*** 1.1.3unstable *** -- FIX: Fixed makefile demo in STM32 demo, this bug was reported fixed in - version 1.1.2 but it was still there (bug 2686451). +- FIX: Fixed makefile in STM32 demo, this bug was reported fixed in + version 1.1.2 but it was still there (bug 2686451).
+- FIX: Fixed makefile in MSP430 demo (bug 2700690). *** 1.1.2unstable ***
- FIX: Fixed priority inheritance problem with condvars (bug 2674756) and
|