You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
279 B
Makefile
15 lines
279 B
Makefile
![]()
10 years ago
|
DIRS = cpu core drivers sys
|
||
|
|
||
|
all:
|
||
![]()
10 years ago
|
mkdir -p $(BINDIR)
|
||
![]()
10 years ago
|
@for i in $(DIRS) ; do $(MAKE) -C $$i ; done ;
|
||
|
|
||
|
clean:
|
||
|
@for i in $(DIRS) ; do $(MAKE) -C $$i clean ; done ;
|
||
![]()
10 years ago
|
@if [ -d $(BINDIR) ] ; \
|
||
![]()
10 years ago
|
then rmdir --ignore-fail-on-non-empty $(BINDIR) ; \
|
||
![]()
10 years ago
|
fi
|
||
![]()
10 years ago
|
|
||
![]()
10 years ago
|
doc:
|
||
|
make -BC doc/doxygen
|