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>
This commit is contained in:
Guy Harris 2014-02-20 23:33:13 -08:00
parent 8d64656f20
commit fe64c4671b
1 changed files with 11 additions and 10 deletions

View File

@ -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_proto.obj \
wslua_listener.obj \
wslua_int64.obj \
wslua_struct.obj \
wslua_tree.obj \
wslua_tvb.obj \
wslua_util.obj
wslua_proto.obj \
wslua_int64.obj \
wslua_tree.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)