for msvc build

2003-07-20  Hans Breuer  <hans@breuer.org>

	* glib/trio/makefile.msc : (new file) for msvc build
This commit is contained in:
Hans Breuer 2003-07-20 15:55:49 +00:00 committed by Hans Breuer
parent 2781d5f6b3
commit 709941e57b

16
glib/trio/makefile.msc Normal file
View File

@ -0,0 +1,16 @@
!IFDEF DEBUG
CRT=-MDd
!ELSE
CRT=-MD
!ENDIF
OBJECTS = \
trio.obj \
trionan.obj \
triostr.obj
trio.lib : $(OBJECTS)
lib -out:trio.lib $(OBJECTS)
.c.obj:
$(CC) $(CRT) -Ox -GD -c $<