mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
16 lines
150 B
Makefile
16 lines
150 B
Makefile
|
PROG := test-vphn
|
||
|
|
||
|
CFLAGS += -m64
|
||
|
|
||
|
all: $(PROG)
|
||
|
|
||
|
$(PROG): ../harness.c
|
||
|
|
||
|
run_tests: all
|
||
|
./$(PROG)
|
||
|
|
||
|
clean:
|
||
|
rm -f $(PROG)
|
||
|
|
||
|
.PHONY: all run_tests clean
|