summaryrefslogtreecommitdiff
path: root/userspace/Makefile
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-10-19 02:41:53 +0200
committerMiguel <m.i@gmx.at>2018-10-19 02:41:53 +0200
commit45ce8728224caa44d31dca3117992b193fa3cd98 (patch)
tree8d37cfe273e9feeb8376b6205abe29c995e40ac2 /userspace/Makefile
parent9bfd9fb6a7c568b56a5ef525a2b76351780bae66 (diff)
window manager continued
Diffstat (limited to 'userspace/Makefile')
-rw-r--r--userspace/Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/userspace/Makefile b/userspace/Makefile
index 8d9cf8e..16d67ac 100644
--- a/userspace/Makefile
+++ b/userspace/Makefile
@@ -1,7 +1,8 @@
-IMAGESIZE=80000 #ext2.img size in Kb
#######################
+IMAGESIZE=80000 #ext2.img size in Kb
+
GIT_REVISION=$(shell git rev-parse HEAD)
CC=i686-foolos-gcc
@@ -32,9 +33,14 @@ include ../Makefile.common
all: ext2.img
-ext2.img: $(PROGS)
- make -C fonts
+xterm:
+ @echo "building fool-term"
make -C xterm
+
+
+ext2.img: $(PROGS) xterm
+ make -C xterm
+ make -C fonts
make -C cpp
make -C ncurses
make -C pain