aboutsummaryrefslogtreecommitdiffstats
path: root/ui/Makefile.nmake
AgeCommit message (Collapse)AuthorFilesLines
2014-03-31Continue to remove $Id$ from top of fileAlexis La Goutte1-1/+0
(Using sed : sed -i '/^\# \$Id\$/,+1 d') (start with dash) Change-Id: Ia4b5a6c2302f6a531f6a86c1ec3a2f8205c8c2dd Reviewed-on: https://code.wireshark.org/review/881 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-09-09With the change from r51895, revert r51894.Chris Maynard1-1/+1
svn path=/trunk/; revision=51896
2013-09-09Add $(ZLIB_CFLAGS) to the GENERATED_CFLAGS list to fix compile error.Chris Maynard1-1/+1
svn path=/trunk/; revision=51894
2013-03-01Export libwireshark symbols using WS_DLL_PUBLIC defineBalint Reczey1-1/+1
Also remove old WS_VAR_IMPORT define and related Makefile magic everywhere in the project. svn path=/trunk/; revision=47992
2013-02-19Add automatic software update checks for Win32 using WinSparkle. AddGerald Combs1-1/+1
preferences (currently hidden) to disable updates, set the update frequency, and set the update "channel" (stable vs development). Add a "Help" menu item to manually check for updates. svn path=/trunk/; revision=47748
2012-09-15Don't redefine WIRESHARK_UI_SRCAnders Broman1-5/+0
svn path=/trunk/; revision=44914
2012-09-15text_import_scanner_lex.h and text_import_scanner.c are now part ofGuy Harris1-0/+7
libui, not libgtkui. svn path=/trunk/; revision=44913
2012-09-15*Do* use DIRTY_GENERATED_C_FILES, as it's defined; sadly, flex doesn'tGuy Harris1-2/+4
generate warning-free files. svn path=/trunk/; revision=44911
2012-06-13Add '*.sbr' to 'clean'Bill Meier1-1/+2
svn path=/trunk/; revision=43233
2012-04-04Add a "-build" argument to checkAPIs.pl. Use that argument when buildingJeff Morriss1-2/+2
from makefiles (and thus from the buildbot). The intention is to be able to tell when a human is running the tool so we can provide more code-review guidance. As a starter, enable the "too many proto_tree_add_text() calls" check when a human is running the tool. svn path=/trunk/; revision=41943
2012-02-24CVARSDLL hasn't been used (is undefined) for a while....Bill Meier1-1/+1
svn path=/trunk/; revision=41180
2012-02-19(Minor): Use GLIB_CFLAGS instead of GTK_CFLAGS when compiling in ui directory.Bill Meier1-1/+1
svn path=/trunk/; revision=41077
2012-02-19We already have GENERATED_HEADER_FILES; no need for GENERATED_H_FILES.Guy Harris1-1/+1
Remove a bunch of stuff copied over from ui/gtk/Makefile.am that doesn't apply here. There's no DIRTY_GENERATED_C_FILES. svn path=/trunk/; revision=41074
2012-02-18Create a libui (static) library in the ui directory, which contains theGuy Harris1-0/+80
object files from all the source files in the ui directory (but not in its subdirectories), and link the programs that need it with them. This cleans things up a little bit, and may also fix the Windows build. svn path=/trunk/; revision=41061