summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile9
1 files changed, 3 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 38442f4..cb59c17 100755
--- a/Makefile
+++ b/Makefile
@@ -6,13 +6,10 @@ all: build test/eviction test/access test/kvm test/sev test/sev-es test/sevstep
clean:
$(MAKE) -C $(LINUX) SUBDIRS=arch/x86/kvm clean
-$(LINUX)/arch/x86/kvm/svm/cachepc:
+$(LINUX)/arch/x86/kvm/cachepc:
ln -sf $(PWD)/cachepc $@
-$(LINUX)/arch/x86/kvm/sevstep:
- ln -sf $(PWD)/sevstep $@
-
-build: $(LINUX)/arch/x86/kvm/svm/cachepc $(LINUX)/arch/x86/kvm/sevstep
+build: $(LINUX)/arch/x86/kvm/cachepc
$(MAKE) -C $(LINUX) -j6 M=arch/x86/kvm
load:
@@ -21,7 +18,7 @@ load:
sudo insmod $(LINUX)/arch/x86/kvm/kvm.ko
sudo insmod $(LINUX)/arch/x86/kvm/kvm-amd.ko
-test/%: test/%.c cachepc/uapi.h sevstep/uapi.h
+test/%: test/%.c cachepc/uapi.h
clang -o $@ $< -fsanitize=address -I . -Wunused-variable