blob: e539f775fd8f0a7459f0df0bb33b7bb5de5cb6e5 [file] [log] [blame]
PROG := test-vphn
CFLAGS += -m64
all: $(PROG)
$(PROG): ../harness.c
run_tests: all
./$(PROG)
clean:
rm -f $(PROG)
.PHONY: all run_tests clean