aboutsummaryrefslogtreecommitdiffstats
path: root/image/Makefile.nmake
AgeCommit message (Collapse)AuthorFilesLines
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
2004-10-20renamed capinfo to capinfos, as the former name capinfo was already used in ↵Ulf Lamping1-3/+3
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-07-28Add the MSWIN RC information for capinfo.Olivier Biot1-1/+6
svn path=/trunk/; revision=11556
2004-07-23From Graham Bloice: add resources to wiretap.dll.Guy Harris1-1/+6
svn path=/trunk/; revision=11476
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-07-17From Graham Bloice: add resource information to libethereal.dll.Guy Harris1-1/+6
svn path=/trunk/; revision=11388
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-03-26From Graham Bloice: make the RC_VERSION variable in config.nmakeGuy Harris1-6/+6
comma-separated, so that the resources will be built correctly and the version number correctly displayed in the GUI, and make the resources dependent on "config.nmake" so that they're rebuilt if it's changed. svn path=/trunk/; revision=7373
2001-07-12From Edward Meaney: include "mergecap.rc" in the list of things to beGuy Harris1-2/+2
built. svn path=/trunk/; revision=3703
2001-07-12Mergecap utility for merging capture files, from Scott Renfro.Guy Harris1-1/+6
svn path=/trunk/; revision=3701
2001-05-21Add resource stuff for text2pcap.Guy Harris1-2/+7
svn path=/trunk/; revision=3429
2001-04-05Use sed in the Win32 build to place the version in various files.Gilbert Ramirez1-0/+26
We us $(VERSION), defined in the top-level config.nmake, to replace @VERSION@ in various files. $(RC_VERSION) and $(WTAP_VERSION) are similarly used. svn path=/trunk/; revision=3258