diff options
author | Benji Dial <benji6283@gmail.com> | 2021-02-17 00:13:06 -0500 |
---|---|---|
committer | Benji Dial <benji6283@gmail.com> | 2021-02-17 00:13:06 -0500 |
commit | 642c3c69a69220170e2f68c2bf6c898e6cb5b20b (patch) | |
tree | 853c4f59c859912f73ede4ab36d89d2b3e9ed0f0 /makefile | |
parent | be05b9b23f988f934af2fd49976fd97c22dfc19a (diff) | |
download | portland-os-642c3c69a69220170e2f68c2bf6c898e6cb5b20b.tar.gz |
win+space, mkpopup
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 |