2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-28 15:13:55 +08:00
linux-next/tools/testing/selftests/Makefile

12 lines
164 B
Makefile
Raw Normal View History

TARGETS = breakpoints
all:
for TARGET in $(TARGETS); do \
make -C $$TARGET; \
done;
clean:
for TARGET in $(TARGETS); do \
make -C $$TARGET clean; \
done;