working 1

This commit is contained in:
acidburn
2025-12-03 13:05:57 -05:00
commit 94615948f8
2 changed files with 593 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
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