CC = gcc TARGET = notepad_clone.exe SRC = notepad_clone.c CFLAGS = -Wall -Wextra -std=c11 -mwindows LDLIBS = -luser32 -lgdi32 -lcomdlg32 $(TARGET): $(SRC) $(CC) $(CFLAGS) -o $@ $< $(LDLIBS) .PHONY: clean clean: del /f /q $(TARGET) 2>NUL || true