aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-02-20 23:33:13 -0800
committerGuy Harris <guy@alum.mit.edu>2014-02-21 07:34:11 +0000
commitfe64c4671b89e0d5b1402e95e0caebdf515e8608 (patch)
tree32c8094f0bff17a659a0f18a115f947c845af29f
parent8d64656f20cfa553a2f5fd88a45885bc0b4f6744 (diff)
And we need wslua_internals.obj as well.
Sort the list to match the .c list while we're at it, to make it easier to check for errors. (Why isn't this done with a Makefile.common file?) Change-Id: I239964d53be9e48bddbd6180aabe118b5cac1fd0 Reviewed-on: https://code.wireshark.org/review/287 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r--epan/wslua/Makefile.nmake17
1 files changed, 9 insertions, 8 deletions
diff --git a/epan/wslua/Makefile.nmake b/epan/wslua/Makefile.nmake
index 807848582e..80bb18a64d 100644
--- a/epan/wslua/Makefile.nmake
+++ b/epan/wslua/Makefile.nmake
@@ -34,17 +34,18 @@ OBJECTS= \
register_wslua.obj \
taps_wslua.obj \
lua_bitop.obj \
- wslua_dumper.obj \
- wslua_field.obj \
- wslua_gui.obj \
- wslua_pinfo.obj \
+ wslua_tvb.obj \
wslua_proto.obj \
- wslua_listener.obj \
wslua_int64.obj \
- wslua_struct.obj \
wslua_tree.obj \
- wslua_tvb.obj \
- wslua_util.obj
+ wslua_pinfo.obj \
+ wslua_listener.obj \
+ wslua_gui.obj \
+ wslua_util.obj \
+ wslua_field.obj \
+ wslua_struct.obj \
+ wslua_dumper.obj \
+ wslua_internals.obj
wslua.lib : $(OBJECTS) init.lua
link /lib /NODEFAULTLIB /out:wslua.lib $(OBJECTS)