diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 |