1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/cc430
René Kijewski 467b41ad49 make: easifier usage of module subdirectories
Many modules have subdirectories. Often these subdirectories should only
be included under certain circumstances. Modules that use submodules
currently need to use this pattern:

```make
DIRS = …

all: $(BINDIR)$(MODULE).a
   @for i in $(DIRS) ; do $(MAKE) -C $$i ; done ;

include $(RIOTBASE)/Makefile.base

clean::
   @for i in $(DIRS) ; do $(MAKE) -C $$i clean ; done ;
```

This PR moves the `all:` and `clean::` boilerplate into `Makefile.base`.
2014-06-17 15:49:32 +02:00
..
include documentation: unified descriptive text for cpu 2014-05-24 15:56:57 +02:00
cc110x_cc430.c streamlined driver include pathes 2014-02-05 18:56:47 +01:00
cc430-adc.c remove trailing whitespace and newlines 2014-02-11 18:45:06 +01:00
cc430-gpioint.c core: prefix API functions correctly 2014-05-18 08:53:20 +02:00
cc430-rtc.c msp430: Fix variable usage in cc430-rtc.c 2014-04-29 00:04:38 +02:00
doc.txt Fixed a lot of comments by removing tabs and correcting format. 2013-12-16 14:00:33 +01:00
flashrom.c added license headers and doxygen file information 2014-02-02 22:22:03 +01:00
hwtimer_cc430.c Handle race conditions preventing timers to be set correctly on MSP430 MCUs 2014-04-09 10:28:39 +02:00
Makefile make: easifier usage of module subdirectories 2014-06-17 15:49:32 +02:00
Makefile.include make: replace MAKEBASE with RIOTBASE 2014-04-01 16:40:28 +02:00