aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWojtek Kosior <kwojtus@protonmail.com>2019-10-11 18:36:14 +0200
committerWojtek Kosior <kwojtus@protonmail.com>2019-10-11 18:36:14 +0200
commite056312b52faf9eff2a88b1c751fb06824263b14 (patch)
treea3bf0bc8e4f4beeeb98b0151ea0819a1e0976e3e /Makefile
parent23e6ba8ef9f9967e0c15c6245fd92cdd5f60fc55 (diff)
downloadrpi-MMU-example-e056312b52faf9eff2a88b1c751fb06824263b14.tar.gz
rpi-MMU-example-e056312b52faf9eff2a88b1c751fb06824263b14.zip
add simple piping program for host
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index da43892..6ced357 100644
--- a/Makefile
+++ b/Makefile
@@ -47,7 +47,10 @@ qemu-bin : kernel7.img
qemu-loader : loader.img
qemu-system-arm -m 256 -M raspi2 -serial stdio -kernel $^
+pipe_image : pipe_image.c
+ gcc -Wall -std=gnu99 -O3 $^ -o $@
+
clean :
- -rm *.img *.elf *.o
+ -rm *.img *.elf *.o pipe_image
.PHONY: all qemu-elf qemu-bin clean