forked from 3rd-party/fff
Added the use of the $(MAKE) variable to support 'gnumake'. Fixed an issue with some make compile rule and the -o option. All targets are removed from the build directory when running 'make clean'.
8 lines
141 B
Makefile
8 lines
141 B
Makefile
all:
|
|
cd embedded_ui; $(MAKE) all
|
|
cd driver_testing; $(MAKE) all
|
|
|
|
clean:
|
|
cd embedded_ui; $(MAKE) clean
|
|
cd driver_testing; $(MAKE) clean
|