diff options
Diffstat (limited to 'innobase/ut/makefilewin')
-rw-r--r-- | innobase/ut/makefilewin | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/innobase/ut/makefilewin b/innobase/ut/makefilewin new file mode 100644 index 00000000000..2fda190773b --- /dev/null +++ b/innobase/ut/makefilewin @@ -0,0 +1,21 @@ +include ..\include\makefile.i + +ut.lib: ut0ut.obj ut0mem.obj ut0byte.obj ut0dbg.obj ut0rnd.obj + lib -out:..\libs\ut.lib ut0ut.obj ut0mem.obj ut0byte.obj ut0dbg.obj ut0rnd.obj + +ut0ut.obj: ut0ut.c + $(CCOM) $(CFL) -c ut0ut.c + +ut0mem.obj: ut0mem.c + $(CCOM) $(CFL) -c ut0mem.c + +ut0byte.obj: ut0byte.c + $(CCOM) $(CFL) -c ut0byte.c + +ut0dbg.obj: ut0dbg.c + $(CCOM) $(CFL) -c ut0dbg.c + +ut0rnd.obj: ut0rnd.c + $(CCOM) $(CFL) -c ut0rnd.c + + |