Sha256: 756098f520259ef7bcfae1a5577be1c2b4979c50ef21111ede8a3b782e02bfd5

Contents?: true

Size: 1.49 KB

Versions: 2

Compression:

Stored size: 1.49 KB

Contents

SRCDIR = ..

LIBSTATIC = libndtypes-0.2.0dev3.lib
LIBSHARED = libndtypes-0.2.0dev3.dll.lib


CC = cl.exe
CFLAGS = /nologo /MT /Ox /GS /EHsc
CFLAGS_SHARED = /nologo /DNDT_IMPORT /MD /Ox /GS /EHsc

default: runtest runtest_shared


runtest:\
Makefile runtest.c alloc_fail.c test_parse.c test_parse_error.c test_parse_roundtrip.c \
test_indent.c test_typecheck.c test_numba.c test_typedef.c test_match.c test_unify.c \
test_buffer.c test.h alloc_fail.h \
$(SRCDIR)\ndtypes.h $(SRCDIR)\$(LIBSTATIC)
	$(CC) -I$(SRCDIR) $(CFLAGS) -DTEST_ALLOC /Feruntest runtest.c \
            alloc_fail.c test_parse.c test_parse_error.c test_parse_roundtrip.c \
            test_indent.c test_typecheck.c test_numba.c test_typedef.c test_match.c \
            test_unify.c test_buffer.c \
            $(SRCDIR)\$(LIBSTATIC)

runtest_shared:\
Makefile runtest.c alloc_fail.c test_parse.c test_parse_error.c test_parse_roundtrip.c \
test_indent.c test_typedef.c test_match.c test_unify.c test.h alloc_fail.h \
$(SRCDIR)\ndtypes.h $(SRCDIR)\$(LIBSHARED)
	$(CC) -I$(SRCDIR) $(CFLAGS_SHARED) -DTEST_ALLOC /Feruntest_shared runtest.c \
            alloc_fail.c test_parse.c test_parse_error.c test_parse_roundtrip.c \
            test_indent.c test_typecheck.c test_numba.c test_typedef.c test_match.c \
            test_unify.c test_buffer.c \
            $(SRCDIR)\$(LIBSHARED)


FORCE:

clean: FORCE
	del /q /f *.exe *.obj *.lib *.dll *.exp *.manifest 2>NUL

distclean: clean
	del /q /f Makefile 2>NUL


Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ndtypes-0.2.0dev8 ext/ruby_ndtypes/ndtypes/libndtypes/tests/Makefile.vc
ndtypes-0.2.0dev6 ext/ruby_ndtypes/ndtypes/libndtypes/tests/Makefile.vc