Your IP : 172.28.240.42


Current Path : /usr/src/linux-headers-3.13.0-32/tools/testing/selftests/powerpc/pmu/
Upload File :
Current File : //usr/src/linux-headers-3.13.0-32/tools/testing/selftests/powerpc/pmu/Makefile

noarg:
	$(MAKE) -C ../

PROGS := count_instructions
EXTRA_SOURCES := ../harness.c event.c

all: $(PROGS)

$(PROGS): $(EXTRA_SOURCES)

# loop.S can only be built 64-bit
count_instructions: loop.S count_instructions.c $(EXTRA_SOURCES)
	$(CC) $(CFLAGS) -m64 -o $@ $^

run_tests: all
	@-for PROG in $(PROGS); do \
		./$$PROG; \
	done;

clean:
	rm -f $(PROGS) loop.o

.PHONY: all run_tests clean