view makefile.win32wind @ 147:f3686f60985d

Sort of working port of framework. Transaction bug seems to be getting in the way. Going to work around, but want the old version in the repo so I can test later.
author Mike Pavone <pavone@retrodev.com>
date Mon, 22 Nov 2010 01:15:02 -0500
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 buffer.obj file.obj worker.obj net.obj window.obj ms_window.obj mt19937ar.obj blueprint.obj

rhope_gui.exe : $(OBJECTS)
	$(CC) $(OBJECTS) /MT /Ferhope_gui.exe /link user32.lib wsock32.lib AdvAPI32.Lib

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