Revision b8ada9c45384da1897c3dfa4cfba9d738c519701 authored by Tim Holy on 08 January 2018, 02:03:42 UTC, committed by GitHub on 08 January 2018, 02:03:42 UTC
Deprecation warnings: print module name if line number is 0
2 parent s 12a264f + 2d7b6e2
Raw File
Windows.mk
!INCLUDE <..\..\Windows.inc>

.SUFFIXES: .c

NAME = support

HEADERS = \
	arraylist.h \
	bitvector.h \
	dirpath.h \
	dtypes.h \
	hashing.h \
	htable.h \
	ios.h \
	libsupport.h \
	MurmurHash3.h \
	ptrhash.h \
	strtod.h \
	timefuncs.h \
	utf8.h \
	utils.h \
	platform.h

OBJECTS = \
	hashing.obj \
	timefuncs.obj \
	strtod.obj \
	ptrhash.obj \
	operators.obj \
	utf8.obj \
	ios.obj \
	htable.obj \
	bitvector.obj \
	int2str.obj \
	libsupportinit.obj \
	arraylist.obj \
	asprintf.obj \
	dirname.obj

INCLUDE = $(INCLUDE);$(MAKEDIR)\..\..\deps\libuv\include
CFLAGS = $(CFLAGS) -D_CRT_SECURE_NO_WARNINGS -DLIBRARY_EXPORTS

default: lib$(NAME).lib

lib$(NAME).lib: $(OBJECTS)
	$(AR) /OUT:$@ $(OBJECTS)

.c.obj:
	$(CC) $(CFLAGS) $<

# vim: noexpandtab:ts=4:sw=4:

back to top