From bc9959c25e9f22ae73a34ac6c4c9cd9cae8ebeca Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 15 Jun 2025 17:35:26 -0400 Subject: usr.bin: Add beep command Signed-off-by: Ian Moffett --- usr.bin/beep/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 usr.bin/beep/Makefile (limited to 'usr.bin/beep/Makefile') diff --git a/usr.bin/beep/Makefile b/usr.bin/beep/Makefile new file mode 100644 index 0000000..409f87c --- /dev/null +++ b/usr.bin/beep/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +$(ROOT)/base/usr/bin/beep: + gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) -- cgit v1.2.3