From 3dd963f27a6818ce2a1140a8f420ff5ba6003bde Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Thu, 21 Aug 2025 21:33:53 -0400 Subject: usr: Add new 'notes' music program Signed-off-by: Ian Moffett --- usr.bin/notes/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 usr.bin/notes/Makefile (limited to 'usr.bin/notes/Makefile') 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) -- cgit v1.2.3