deleted programs/Makefile

This commit is contained in:
Ludwig Lehnert 2025-05-08 14:17:14 +02:00
parent a8bb32014a
commit 2c08f1ba04
Signed by: ludwig
SSH Key Fingerprint: SHA256:4vshH9GJ8TLO1RS2fY6rDDLnq7+KVvSClCY+uEhYYRA

View File

@ -1,16 +0,0 @@
CC = cl
CFLAGS = /Zi /Od /link /MACHINE:X64
all: compiled\Foo.exe compiled\Twice.exe compiled\JustOpen.exe
clean:
del /Q "compiled\*"
compiled\Foo.exe: source\Foo.c
$(CC) /Fe:$@ source\Foo.c $(CFLAGS)
compiled\Twice.exe: source\Twice.c
$(CC) /Fe:$@ source\Twice.c comdlg32.lib $(CFLAGS)
compiled\JustOpen.exe: source\JustOpen.c
$(CC) /Fe:$@ source\JustOpen.c comdlg32.lib $(CFLAGS)