https://github.com/JuliaLang/julia
Raw File
Tip revision: 980eda064e5a0381a6afa19046d77c1f33e1f301 authored by Alex Arslan on 13 January 2019, 00:19:04 UTC
Set VERSION to 1.1.0-rc2 (#30701)
Tip revision: 980eda0
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