meri/Makefile
Juhani Krekelä 959091683d Split Makefile into nmake-specific and portable parts
This avoids dependency information duplication with the *nix port
2025-08-20 00:11:58 +03:00

19 lines
284 B
Makefile

CC=cl
LINK=link
CFLAGS=/options:strict /W4 /wd4200 /std:c17 /permissive- /utf-8 /Zi /fsanitize=address
LFLAGS=/DEBUG
all: tests.exe
O=obj
!INCLUDE Makefile.common
tests.exe: $(TEST_OBJS)
$(LINK) $(LFLAGS) -out:$@ $**
clean:
del *.obj *.exe *.pdb
check: tests.exe
.\tests.exe