diff options
author | Ian Moffett <ian@osmora.org> | 2025-08-21 21:33:53 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-08-21 21:33:53 -0400 |
commit | 3dd963f27a6818ce2a1140a8f420ff5ba6003bde (patch) | |
tree | 52ec22110ffe925a0ee057945c5b5c43eae256c7 /usr.bin/notes/Makefile | |
parent | 6bd8fc75891cf2c08aaf4584f0110ca1cbbf84db (diff) |
usr: Add new 'notes' music program
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin/notes/Makefile')
-rw-r--r-- | usr.bin/notes/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.bin/notes/Makefile b/usr.bin/notes/Makefile new file mode 100644 index 0000000..c8717a9 --- /dev/null +++ b/usr.bin/notes/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +$(ROOT)/base/usr/bin/notes: + gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) |