From 6759631b90b0ee1a2ce52be410fbe9173b3c2af5 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 19 Jul 2025 21:20:45 -0400 Subject: usr: Add initial "oasm" assembler work Signed-off-by: Ian Moffett --- usr.bin/oasm/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 usr.bin/oasm/Makefile (limited to 'usr.bin/oasm/Makefile') diff --git a/usr.bin/oasm/Makefile b/usr.bin/oasm/Makefile new file mode 100644 index 0000000..a83aaab --- /dev/null +++ b/usr.bin/oasm/Makefile @@ -0,0 +1,7 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") +CFLAGS = -Iinclude/ + +$(ROOT)/base/usr/bin/oasm: + gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) $(CFLAGS) -- cgit v1.2.3