git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@480 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
6bb6b521f5
commit
8317685beb
|
@ -113,6 +113,9 @@ CPFLAGS = $(MCFLAGS) $(OPT) $(WARN) -Wa,-alms=$(<:.c=.lst) $(DEFS)
|
|||
LDFLAGS = $(MCFLAGS) -T$(LDSCRIPT) -Wl,-Map=$(PROJECT).map,--cref,--no-warn-mismatch $(LIBDIR)
|
||||
ODFLAGS = -x --syms
|
||||
|
||||
# Generate dependency information
|
||||
CPFLAGS += -MD -MP -MF .dep/$(@F).d
|
||||
|
||||
#
|
||||
# Makefile rules
|
||||
#
|
||||
|
@ -150,5 +153,11 @@ clean:
|
|||
-rm -f $(SRC:.c=.lst)
|
||||
-rm -f $(ASMSRC:.s=.s.bak)
|
||||
-rm -f $(ASMSRC:.s=.lst)
|
||||
-rm -fR .dep
|
||||
|
||||
#
|
||||
# Include the dependency files, should be the last of the makefile
|
||||
#
|
||||
-include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)
|
||||
|
||||
# *** EOF ***
|
||||
|
|
|
@ -75,8 +75,10 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
|
|||
|
||||
*** 0.7.3 ***
|
||||
- Small optimization to the MSP430 serial driver.
|
||||
- Added dependency informations handling to the MSP430 demo Makefile.
|
||||
- Removed the performance spreadsheet (it was *very* old) and added a
|
||||
directory containing the test reports ./docs/reports.
|
||||
directory containing the test reports ./docs/reports. Each report shows the
|
||||
results from the latest test run on each target.
|
||||
|
||||
*** 0.7.2 ***
|
||||
- NEW: Added a serial driver to the MSP430 port, the MSP430 port now has been
|
||||
|
|
Loading…
Reference in New Issue