projects
/
platform
/
upstream
/
glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2781d5f
)
for msvc build
author
Hans Breuer
<hans@breuer.org>
Sun, 20 Jul 2003 15:55:49 +0000
(15:55 +0000)
committer
Hans 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]
patch
|
blob
diff --git a/glib/trio/makefile.msc
b/glib/trio/makefile.msc
new file mode 100644
(file)
index 0000000..
9fdf120
--- /dev/null
+++ b/
glib/trio/makefile.msc
@@ -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 $<