summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/makefile b/makefile
index ee8aaf0..3dbc96e 100644
--- a/makefile
+++ b/makefile
@@ -36,7 +36,7 @@ out/fs/man/%.man: src/man/%.pre
python3 tools/man-gen.py $< $@
out/fs: out/fs/bin/init out/fs/bin/highway out/fs/bin/meminfo \
- out/fs/bin/terminal out/fs/bin/hello
+ out/fs/bin/terminal out/fs/bin/hello out/fs/bin/mkpopup
touch out/fs
cp -r fs-skel/* out/fs/
@@ -112,4 +112,8 @@ obj/terminal.elf: obj/terminal/main.o obj/libfont.so obj/knob.so \
ld -T src/user/runtimes/c/elf.ld $^ -o $@
obj/hello.elf: obj/hello/hello.ao
- ld -T src/user/runtimes/asm/elf.ld $^ -o $@ \ No newline at end of file
+ ld -T src/user/runtimes/asm/elf.ld $^ -o $@
+
+obj/mkpopup.elf: obj/mkpopup/main.o obj/popups.so obj/libfont.so \
+ obj/knob.so obj/c.rto
+ ld -T src/user/runtimes/c/elf.ld $^ -o $@ \ No newline at end of file