root/trunk/Makefile

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

doc

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
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
14doc:
15        doxygen
16        $(MAKE) -C docs/latex
17
18.PHONY: all clean doc
Note: See TracBrowser for help on using the browser.