diff options
author | Luis Ontanon <luis.ontanon@gmail.com> | 2006-10-17 18:20:44 +0000 |
---|---|---|
committer | Luis Ontanon <luis.ontanon@gmail.com> | 2006-10-17 18:20:44 +0000 |
commit | b8ef88a6e224192c3d19310e859d655377c6ae1c (patch) | |
tree | 1ee746243482ff3fe184e88beb6b55dbdf219cbe /epan/wslua/Makefile.nmake | |
parent | 482ded17c639d2722a9d6dbaba622cde358eae3e (diff) | |
download | wireshark-b8ef88a6e224192c3d19310e859d655377c6ae1c.tar.gz wireshark-b8ef88a6e224192c3d19310e859d655377c6ae1c.tar.bz2 wireshark-b8ef88a6e224192c3d19310e859d655377c6ae1c.zip |
Several changes:
- do not #include a c code file in wslua_register.c compile a separate boject
- add the console and evaluate windows
- add some useful vars to the lua environment
- some cleanup
- add the dtd generator code (currently disabled)
svn path=/trunk/; revision=19579
Diffstat (limited to 'epan/wslua/Makefile.nmake')
-rw-r--r-- | epan/wslua/Makefile.nmake | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/epan/wslua/Makefile.nmake b/epan/wslua/Makefile.nmake index dc650ff97c..21d571f81a 100644 --- a/epan/wslua/Makefile.nmake +++ b/epan/wslua/Makefile.nmake @@ -28,6 +28,7 @@ MODULES = \ OBJECTS= \ init_wslua.obj \ register_wslua.obj \ + taps_wslua.obj \ wslua_dumper.obj \ wslua_field.obj \ wslua_gui.obj \ @@ -42,7 +43,7 @@ wslua.lib : $(OBJECTS) init.lua link /lib /NODEFAULTLIB /out:wslua.lib $(OBJECTS) clean: - rm -f $(OBJECTS) wslua.lib $(PDB_FILE) init.lua taps.c-inc declare_wslua.h register_wslua.c taps.txt + rm -f $(OBJECTS) wslua.lib $(PDB_FILE) init.lua taps_wslua.c declare_wslua.h register_wslua.c taps.txt init_wslua.c: declare_wslua.h @@ -59,12 +60,10 @@ TAPS_USED = \ taps: $(TAPS_USED) touch taps -taps.c-inc: make-taps.pl taps - $(PERL) make-taps.pl taps taps.c-inc taps.txt +taps_wslua.c: make-taps.pl taps + $(PERL) make-taps.pl taps taps_wslua.c taps.txt -wslua_listener.c: taps.c-inc - -taps.txt: taps.c-inc +taps.txt: taps_wslua.c register_wslua.c: declare_wslua.h |