Use $(MAKE) instead of make in Makefiles
This will pass the correct flags to the make invocations.
This commit is contained in:
@ -23,8 +23,8 @@ EXECUTABLES := \
|
||||
large_array_growth
|
||||
|
||||
all: $(EXECUTABLES)
|
||||
make -C simple-memory-corruption
|
||||
$(MAKE) -C simple-memory-corruption
|
||||
|
||||
clean:
|
||||
rm -f $(EXECUTABLES)
|
||||
make -C simple-memory-corruption clean
|
||||
$(MAKE) -C simple-memory-corruption clean
|
||||
|
Reference in New Issue
Block a user