aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.am.inc
AgeCommit message (Collapse)AuthorFilesLines
2014-03-31Continue to remove $Id$ from top of fileAlexis La Goutte1-2/+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-11-03Pass the name of the sed executable as an explicit argurment toJörg Mayer1-4/+4
runlex.sh (like it is done with LEX already). May fix a problem on Windows with cmake. svn path=/trunk/; revision=53059
2013-02-25Add dumpabi targets to CMake buildsBalint Reczey1-1/+1
Also update automake generated targets to match CMake generated ones svn path=/trunk/; revision=47879
2013-02-24Generate abi-descriptor.xml-s in CMake buildsBalint Reczey1-1/+1
svn path=/trunk/; revision=47865
2013-02-06Remove more unnecessary defintions.Gerald Combs1-4/+0
svn path=/trunk/; revision=47527
2013-02-04Fix more verbosity macros.Gerald Combs1-8/+8
svn path=/trunk/; revision=47477
2013-02-04More silent build support.Gerald Combs1-3/+23
svn path=/trunk/; revision=47472
2013-02-01Add $(AM_V_GEN) in a few more places.Gerald Combs1-3/+3
svn path=/trunk/; revision=47434
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-06-02Don't complain about using GNU make extensions during running ./autogen.shBalint Reczey1-0/+2
svn path=/trunk/; revision=42995
2011-06-04Use more include dirs for ABI dumping to make preprocessor happier.Balint Reczey1-1/+1
svn path=/trunk/; revision=37544
2011-05-31Add dumpabi target to Makefiles in wsutil, epan and wiretap directories.Balint Reczey1-0/+5
We can use the dumped ABI description for comparing ABI changes between revisions. svn path=/trunk/; revision=37474
2010-12-16Export only defined symbols from libwsutil.Balint Reczey1-1/+1
Exported symbols are the symbols listed in libwsutil.def, but the symbols defined in not used optional objects are filtered out. svn path=/trunk/; revision=35202
2010-12-07Make libtool export only symbols listed in *.def filesBalint Reczey1-0/+3
svn path=/trunk/; revision=35145
2007-08-04Add a script as a front-end for Flex, to work around various problems,Guy Harris1-5/+1
such as the fact that Flex strips all but the last component of the "-o" argument, and that it doesn't generate a header file to declare routines the generated lexical analyzer defines. Use that script when building lexical analyzers, and, for each lexical analyzer, include the generated header file in the generated analyzer. svn path=/trunk/; revision=22446
2007-08-01Add a Makefile.am.inc file, to hold rules etc. used by multipleGuy Harris1-0/+29
Makefile.am files; currently, it has the (F)lex-to-C rule. Have Makefile.am files with .l.c rules include Makefile.am.inc to get that rule. svn path=/trunk/; revision=22436