From cf25483e154ae1d5e9685a6087ba51642e4326c5 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 21 Nov 2025 20:13:30 -0500 Subject: build: Build initramfs with OMAR Signed-off-by: Ian Moffett --- tools/omar/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tools/omar/Makefile (limited to 'tools/omar/Makefile') diff --git a/tools/omar/Makefile b/tools/omar/Makefile new file mode 100644 index 0000000..ee30260 --- /dev/null +++ b/tools/omar/Makefile @@ -0,0 +1,12 @@ +CFILES = $(shell find . -name "*.c") +CFLAGS = -pedantic +CC = gcc + +.PHONY: all +all: + mkdir -p bin/ + $(CC) $(CFLAGS) $(CFILES) -o bin/omar + +.PHONY: clean +clean: + rm -rf bin/ -- cgit v1.2.3