diff options
author | johannst <johannes.stoelp@gmail.com> | 2021-05-26 00:21:06 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2021-05-26 00:21:06 +0200 |
commit | 786a195f8e81d4f7c0af2a82b9d458361d424a71 (patch) | |
tree | c0df3de9a71e3ae1db1cdf4a59cde6d1accadf33 /sysdeps/Makefile | |
download | mini-kvm-rs-786a195f8e81d4f7c0af2a82b9d458361d424a71.tar.gz mini-kvm-rs-786a195f8e81d4f7c0af2a82b9d458361d424a71.zip |
minimal KVM abstraction + real mode guest example
Diffstat (limited to 'sysdeps/Makefile')
-rw-r--r-- | sysdeps/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sysdeps/Makefile b/sysdeps/Makefile new file mode 100644 index 0000000..092047e --- /dev/null +++ b/sysdeps/Makefile @@ -0,0 +1,10 @@ +OUT ?= /dev/stdout + +gen: kvm + ./kvm > $(OUT) + +kvm: kvm.c + $(CC) $(CFLAGS) -Wpedantic -Wall -Wextra -Werror -o $@ $^ + +clean: + $(RM) kvm |