From eb806d8a5d42d1728875264c7276c597c5924252 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Mon, 21 Jul 2025 04:16:29 -0400 Subject: usr: Add initial OSMX64 emulator sources Signed-off-by: Ian Moffett --- usr.bin/oemu/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 usr.bin/oemu/Makefile (limited to 'usr.bin/oemu/Makefile') diff --git a/usr.bin/oemu/Makefile b/usr.bin/oemu/Makefile new file mode 100644 index 0000000..366208c --- /dev/null +++ b/usr.bin/oemu/Makefile @@ -0,0 +1,7 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") +CFLAGS = -Iinclude/ + +$(ROOT)/base/usr/bin/oemu: + gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) $(CFLAGS) -- cgit v1.2.3