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'.
11 lines
178 B
Makefile
11 lines
178 B
Makefile
all:
|
|
mkdir -p build
|
|
cd gtest; $(MAKE) all
|
|
cd test; $(MAKE) all
|
|
cd examples; $(MAKE) all
|
|
|
|
clean:
|
|
cd gtest; $(MAKE) clean
|
|
cd test; $(MAKE) clean
|
|
cd examples; $(MAKE) clean
|