view makefile.win32wind @ 75:0083b2f7b3c7

Partially working implementation of List. Modified build scripts to allow use of other compilers. Fixed some bugs involving method implementations on different types returning different numbers of outputs. Added Fold to the 'builtins' in the comipler.
author Mike Pavone <pavone@retrodev.com>
date Tue, 06 Jul 2010 07:52:59 -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 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 $<