17 lines
362 B
Makefile
17 lines
362 B
Makefile
CC=cl
|
|
LINK=link
|
|
|
|
CFLAGS=/options:strict /W4 /wd4200 /std:c17 /permissive- /utf-8 /Zi /fsanitize=address
|
|
LFLAGS=/DEBUG
|
|
|
|
all: meri.exe
|
|
|
|
meri.exe: main.obj meri_bigint.obj meri_object.obj
|
|
$(LINK) $(LFLAGS) -out:$@ $**
|
|
|
|
main.obj: meri_object.h meri_bigint.h
|
|
meri_bigint.obj: meri_object.h meri_bigint.h
|
|
meri_object.obj: meri_object.h
|
|
|
|
clean:
|
|
del *.obj *.exe *.pdb
|