Files
glib/glib/trio/makefile.msc
Hans Breuer 709941e57b for msvc build
2003-07-20  Hans Breuer  <hans@breuer.org>

	* glib/trio/makefile.msc : (new file) for msvc build
2003-07-20 15:55:49 +00:00

17 lines
186 B
Plaintext

!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 $<