Implemented support for building host binaries to test kernel features
This commit is contained in:
13
sandbox/Makefile
Normal file
13
sandbox/Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
SANDBOX_DIR_LIST := hello
|
||||
|
||||
all:
|
||||
@for prog in $(SANDBOX_DIR_LIST); do \
|
||||
$(MAKE) -C $$prog; \
|
||||
done
|
||||
|
||||
clean:
|
||||
@for prog in $(SANDBOX_DIR_LIST); do \
|
||||
$(MAKE) -C $$prog clean; \
|
||||
done
|
||||
|
||||
.PHONY: all clean
|
||||
Reference in New Issue
Block a user