diff options
author | Wojtek Kosior <kwojtus@protonmail.com> | 2019-10-11 18:36:14 +0200 |
---|---|---|
committer | Wojtek Kosior <kwojtus@protonmail.com> | 2019-10-11 18:36:14 +0200 |
commit | e056312b52faf9eff2a88b1c751fb06824263b14 (patch) | |
tree | a3bf0bc8e4f4beeeb98b0151ea0819a1e0976e3e /Makefile | |
parent | 23e6ba8ef9f9967e0c15c6245fd92cdd5f60fc55 (diff) | |
download | rpi-MMU-example-e056312b52faf9eff2a88b1c751fb06824263b14.tar.gz rpi-MMU-example-e056312b52faf9eff2a88b1c751fb06824263b14.zip |
add simple piping program for host
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |