root/trunk/Makefile @ 406

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

doc

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