view makefile.win32 @ 167:690ed78ead8a

Some type inference fixes and make method calls into regular calls when first arg type is known at compile time
author Mike Pavone <pavone@retrodev.com>
date Mon, 04 Apr 2011 01:41:19 -0400
parents 76568becd6d6
children
line wrap: on
line source

OBJECTS = visuality_cmd.obj parser.obj interp.obj saveload.obj datum.obj number.obj string.obj list.obj dict.obj file.obj worker.obj net.obj mt19937ar.obj buffer.obj blueprint.obj

rhope.exe : $(OBJECTS)
	$(CC) $(OBJECTS) /Ox /Oy /Gr /MT /Ferhope.exe /link user32.lib wsock32.lib AdvAPI32.Lib

.c.obj:
	$(CC) /c /Ox /Oy /Gr /wd4005 -DCONSOLE=1 -D_CRT_SECURE_NO_DEPRECATE -D_WIN32_WINNT=0x0403 -DWIN32 $<