summaryrefslogtreecommitdiff
path: root/userspace/Makefile
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-08-19 03:33:06 +0200
committerMiguel <m.i@gmx.at>2018-08-19 03:33:06 +0200
commitc102a9cd6c1da22f0c928fc66bd4bf0b5750765a (patch)
treec22aad4aeee45fbba2d5fb360875edd794207c69 /userspace/Makefile
parent9b13ca03dacb6a385461dccad319010537add5cf (diff)
foolos fonts work again!
Diffstat (limited to 'userspace/Makefile')
-rw-r--r--userspace/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/userspace/Makefile b/userspace/Makefile
index a508e7f..85c7982 100644
--- a/userspace/Makefile
+++ b/userspace/Makefile
@@ -25,7 +25,9 @@ include ../Makefile.common
all: crt0.o ext2.img
+
ext2.img: $(PROGS) ../mp/mp.bin
+ make -C fonts
@echo "----------------------"
@echo "Creating ext2.img ...."
@dd if=/dev/zero of=ext2.img bs=1024 count=$(IMAGESIZE)
@@ -38,6 +40,7 @@ ext2.img: $(PROGS) ../mp/mp.bin
@echo "Welcome to FoolOs\nWe hope you will enjoy your stay." > mnt/home/miguel/hello.txt
@mkdir -p mnt/bin
@cp $(PROGS) mnt/bin
+ @cp fonts/binfont.bin mnt/
@echo "++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++." > mnt/home/miguel/hello.brain
# cp ~/temp/fool-os-stuff/binutils-build-host-foolos/binutils/readelf mnt/bin
@@ -60,6 +63,7 @@ ext2.img: $(PROGS) ../mp/mp.bin
@echo "----------------------"
clean:
+ make -C fonts clean
@echo "Cleaning userspace ..."; rm -f *.o $(PROGS) ext2.img *.d
new: clean all