]> rtime.felk.cvut.cz Git - pes-rpp/rpp-lib.git/blob - Makefile
Change top-level Makefile to not call Eclipse
[pes-rpp/rpp-lib.git] / Makefile
1 # This makefile tries to build all RPP projects in this repository.
2
3 SUBDIRS = Debug POSIX apps/rpp-test-suite/Debug #apps/rpp-test-suite_posix/Debug
4
5 subdir-targets = $(SUBDIRS:%=subdir-%)
6
7 all: $(subdir-targets)
8
9 clean: $(subdir-targets)
10
11 lib: # Build only the library
12         $(MAKE) -C Debug
13
14 .PHONY: all clean lib
15
16 subdir-%:
17         $(MAKE) -C $* $(MAKECMDGOALS)
18
19 # TODO
20 # test-suite-posix:
21 #       $(MAKE) -C apps/rpp-test-suite_posix/Debug