forked from 3rd-party/fff
Improve makefiles
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'.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
all:
|
||||
cd embedded_ui; make all
|
||||
cd driver_testing; make all
|
||||
cd embedded_ui; $(MAKE) all
|
||||
cd driver_testing; $(MAKE) all
|
||||
|
||||
clean:
|
||||
cd embedded_ui; make clean
|
||||
cd driver_testing; make clean
|
||||
cd embedded_ui; $(MAKE) clean
|
||||
cd driver_testing; $(MAKE) clean
|
||||
|
||||
Reference in New Issue
Block a user