root/trunk/Makefile

Revision 406, 294 bytes (checked in by goodea, 2 years ago)

doc

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 SUBDIRS=hal projects
2
3 # Build rules
4 all:
5         @list='$(SUBDIRS)'; set -e;  for subdir in $$list; do \
6           $(MAKE) -C $$subdir; \
7         done
8
9 clean:
10         @list='$(SUBDIRS)'; set -e;  for subdir in $$list; do \
11           $(MAKE) -C $$subdir clean; \
12         done
13
14 doc:
15         doxygen
16         $(MAKE) -C docs/latex
17
18 .PHONY: all clean doc
Note: See TracBrowser for help on using the browser.