Skip to content

Instantly share code, notes, and snippets.

View WinFutureX's full-sized avatar

Kelsey Boey WinFutureX

  • Singapore
View GitHub Profile
@WinFutureX
WinFutureX / Makefile
Last active April 21, 2026 16:45
Example makefile-based universal binary for macOS
.SUFFIXES: .c .o
.PHONY: clean
CFLAGS := -O2
OBJDIR := obj
OBJDIR_X86_64 := $(OBJDIR)/x86_64
OBJDIR_ARM64 := $(OBJDIR)/arm64
OBJS = other.o main.o