19 lines
284 B
Makefile
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
|