aboutsummaryrefslogtreecommitdiffstats
path: root/doc/Makefile.nmake
AgeCommit message (Collapse)AuthorFilesLines
2006-05-31Rename the main executable to "wireshark", along with more conversions:Gerald Combs1-17/+17
ethereal.com -> wireshark.org mailing lists and addresses ETHEREAL -> WIRESHARK Man pages Automake/Autoconf names svn path=/trunk/; revision=18271
2006-05-31Tethereal/tethereal -> TShark/tshark.Gerald Combs1-12/+12
svn path=/trunk/; revision=18268
2006-05-31libethereal -> libwireshark. idl2eth -> idl2wrs. There are a _lot_ ofGerald Combs1-8/+8
changes here. It compiles OK on OS X, but hasn't been tested anywhere else. svn path=/trunk/; revision=18260
2006-05-22ethereal->wireshark updatesRonnie Sahlberg1-19/+19
svn path=/trunk/; revision=18206
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-02-09add dumpcap manual pageUlf Lamping1-2/+15
svn path=/trunk/; revision=17237
2005-09-06In doc/Makefile.nmake, use the "install-deps" target from the rootGerald Combs1-7/+2
Makefile.nmake instead of doing our own XCOPYing. Use the "clean-deps" target when we're done instead of leaving DLLs lying around. Normalize the use of underscores vs hyphens in the "clean-deps" target. svn path=/trunk/; revision=15704
2005-05-03add the new target "install-plugins" to nmake makefileLars Roland1-0/+3
in the plugins subdirectory. This target will copy all plugins to plugins/$(VERSION), thus (t)ethereal will find and load the plugins when called from within the source tree. call this target from the main nmake makefile after installing other dependencies. call it from the nmake makefile in the doc subdirectory before calling "tethereal -G". This way "tethereal -G" will recognize the filterable fields from the plugins, too. svn path=/trunk/; revision=14284
2005-05-01Add an install-deps target to the nmake makefiles.Lars Roland1-1/+0
This target will copy all files, mainly dlls, which are necessary to run (t)ethereal to the source tree. After copying all necessary dlls to the source tree, you can run (t)ethereal directly from the source tree. svn path=/trunk/; revision=14259
2005-02-14Make the "maintainer-clean" rules get rid of some additional generatedGuy Harris1-0/+2
files. Do this with GENERATED_HEADER_FILES, GENERATED_C_FILES, and GENERATED_FILES macros in Makefile.common files, along the lines of what wiretap/Makefile.common has. Clean up "*~" files with "make clean" rather than only "make distclean" in some additional places. Add "maintainer-clean" rules to the Makefile.nmake files, paralelling the ones in the automake-generated Makefile.in files, using the GENERATED_FILES macros from Makefile.common files. In some cases, move the cleanup of files from "make distclean" to "make maintainer-clean", and in other cases, put in a comment indicating why we're not doing that (because some files that are distributed in the source tarballs, namely Flex output, were built with a UN*X Flex and won't compile on Windows, so we get rid of them with "make distclean" so you can clean up stuff that *has* to be re-generated for Windows). Clean up some *CLEANFILES definitions - get rid of ones that no longer apply as files were moved or that add to the definition a name that's already there. svn path=/trunk/; revision=13402
2005-01-14Remove another GNU cp dependency.Gerald Combs1-2/+2
svn path=/trunk/; revision=13033
2004-10-20renamed capinfo to capinfos, as the former name capinfo was already used in ↵Ulf Lamping1-8/+8
a program called tcprelay, so that might confuse packaging managers and users. Hopefully I got all the places need to be changed. svn path=/trunk/; revision=12358
2004-10-18Add a rule to make ../AUTHORS-SHORT-FORMAT, as it won't necessarily haveGuy Harris1-1/+6
been made by the time this Makefile is used. svn path=/trunk/; revision=12336
2004-10-17From Graeme Hewson: make AUTHORS-SHORT not include formatting codes,Guy Harris1-2/+2
with AUTHORS-SHORT-FORMAT containing the formatting codes. svn path=/trunk/; revision=12334
2004-07-28From Ian Schorr: capinfo - provides capture file information.Olivier Biot1-3/+17
svn path=/trunk/; revision=11555
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-05-22remove (duplicated) list of authors from ethereal.pod,Ulf Lamping1-5/+8
and use ../AUTHORS-SHORT instead to concatenate a tmp file to use svn path=/trunk/; revision=10963
2004-05-22add a target to build the manpagesUlf Lamping1-1/+4
svn path=/trunk/; revision=10958
2004-05-09From Lars Roland: add support for building a libethereal.dll with MSVC:Guy Harris1-2/+7
add a config.nmake option to control whether to build libethereal.dll or not; remove "./wiretap" from PATH to prevent problems due to wrongly-loaded files; build dissector.lib with MSVC; move "print.c" and "ps.c" to the dissector helpers, as "print.c" imports variables from packet-frame.c and packet-data.c, which are in libethereal; move "g711.c" out of the dissector helpers, as they're used only by Ethereal in a tap, not in Tethereal or in any dissector; add a .def file for libethereal; arrange to declare global variables exported from libethereal with "__declspec(dllimport)" when building programs that import those variables; update the NSIS installer. Make the "configure" script define ETH_VAR_IMPORT as "extern". svn path=/trunk/; revision=10834
2004-04-25build a list of the input file formats instead of a floating text,Ulf Lamping1-7/+7
added program names to HTML titles, various minor fixes svn path=/trunk/; revision=10686
2003-12-23calling tethereal in it's place, to prevent problems with dll loadingUlf Lamping1-2/+4
svn path=/trunk/; revision=9429
2003-10-10Give every Makefile.nmake file a "distclean" rule, and have "distclean"Guy Harris1-1/+3
recurse into subdirectories doing "nmake -f Makefile.nmake distclean". Have "nmake -f Makefile.nmake clean" not remove stuff that "make clean" doesn't remove (such as Flex/Bison output and config.h files) - and have "nmake -f Makefile.nmake distclean" remove stuff that "make distclean" removes, including "tethereal-tap-register.c" and "ethereal-tap-register.c". svn path=/trunk/; revision=8672
2003-10-02Fix document creation under Windows, add ethereal-filter.html to the NSISGerald Combs1-8/+6
package. svn path=/trunk/; revision=8596
2003-10-01Update for the new ethereal-filter man page.Guy Harris1-4/+16
svn path=/trunk/; revision=8580
2003-02-13Make doc/Makefile.nmake work in POSIXLY_CORRECT environment, as perGuy Harris1-29/+29
Santeri Paavolainen's changes to make doc/Makefile.am work in such an environment. Move the idl2eth rules above the mergecap rules, to match the way doc/Makefile.am works. svn path=/trunk/; revision=7140
2002-01-04From Hamish Moffatt:Guy Harris1-1/+6
Additional Windows Makefile dependencies, so more stuff gets built as needed. Additional stuff cleaned up by "make clean" (well, "nmake -f makefile.nmake clean", anyway) Make PDB_FILE be "vc*.pdb", so it referes to the PDB files either for VC++ 5.0 or VC++ 6.0. svn path=/trunk/; revision=4481
2002-01-04From Hamish Moffatt:Guy Harris1-22/+38
Add some missing files in the "clean" targets. Use pod2html rather than man2html to build HTML man pages. Fix ethereal.nsi.in for recent versions of NSIS, and fix a typo. svn path=/trunk/; revision=4475
2001-07-30idl2eth man page, from Frank Singleton.Guy Harris1-3/+41
Update Makefile.am and Makefile.nmake files to build it (although it's not currently built by default; you have to do "make idl2eth.1" on UNIX, and something similar on Windows. Put a full copyright notice into "doc/Makefile.nmake", along with a comment explaining why stuff depends on "../config.h". Also, add "clean" rules to it to get rid of generated files for mergecap and text2pcap documentation. svn path=/trunk/; revision=3801
2001-07-12Package mergecap.exe and its HTML documentation.Gilbert Ramirez1-2/+12
Update NSIS syntax for newest NSIS. That fix from David O'Shea. Set config.nmake to get non-cygwin version of Python.exe; cygwin version is fouling up on me and I'm not sure why. svn path=/trunk/; revision=3705
2001-05-22Win32: build text2pcap doco and package it.Gilbert Ramirez1-2/+11
svn path=/trunk/; revision=3435
2001-04-12Improvement of 'make clean' targets.Gilbert Ramirez1-1/+6
svn path=/trunk/; revision=3297
2001-03-09Add ability to create HTML documentation on Windows, if you haveGilbert Ramirez1-0/+39
perl and man2html. Don't call this makefile from the parent makefile as not everyone will want to create documentation. Add a couple variables to config.nmake to support this. svn path=/trunk/; revision=3119