for msvc build
authorHans Breuer <hans@breuer.org>
Sun, 20 Jul 2003 15:55:49 +0000 (15:55 +0000)
committerHans Breuer <hans@src.gnome.org>
Sun, 20 Jul 2003 15:55:49 +0000 (15:55 +0000)
2003-07-20  Hans Breuer  <hans@breuer.org>

* glib/trio/makefile.msc : (new file) for msvc build

glib/trio/makefile.msc [new file with mode: 0644]

diff --git a/glib/trio/makefile.msc b/glib/trio/makefile.msc
new file mode 100644 (file)
index 0000000..9fdf120
--- /dev/null
@@ -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 $<