aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Custom.nmake.example
AgeCommit message (Collapse)AuthorFilesLines
2015-03-14Update Custom.nmake.example with the change done in g2ef72cbPascal Quantin1-1/+1
Change-Id: I8d2dc7325da9cd573e87ac924feafe9b55f44a5f Reviewed-on: https://code.wireshark.org/review/7682 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
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>
2012-09-25Implement and document the Custom plugin system. Create relevant example ↵Jaap Keuter1-16/+0
files and add them to the distribution. Rewrite README.plugins to describe how to use this system. svn path=/trunk/; revision=45142
2009-07-06fix install stepUlf Lamping1-1/+1
svn path=/trunk/; revision=28945
2006-09-30we don't need to .. the dirs for the clean targets hereUlf Lamping1-3/+3
svn path=/trunk/; revision=19381
2006-09-30"Pluggable custom makefile"Ulf Lamping1-0/+48
A custom plugin (not yet to be released to the public) can be added to Makefile.nmake easily. But this has a drawback: The modified Makefile.nmake appears as a modified file in the commit list and in generated patches (this annoyed me for years). To solve this I've added a plugin like mechanism which calls a Custom.nmake file for each target (if the file is existing). I've also added a Custom.nmake.example for a quick start. I don't know how to do this for the Makefile.am, so I leave this as an exercise for the interested reader ;-) svn path=/trunk/; revision=19377