wireshark/plugins/Custom.nmake.example
Alexis La Goutte 757aa33220 Continue to remove $Id$ from top of file
(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>
2014-03-31 18:48:06 +00:00

31 lines
466 B
Text

#
include ..\config.nmake
all: foo
foo::
cd foo
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
clean:
cd foo
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
distclean: clean
cd foo
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ..
maintainer-clean: distclean
cd foo
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
cd ..
install-plugins:
!IFDEF ENABLE_LIBWIRESHARK
xcopy foo\*.dll ..\$(INSTALL_DIR)\plugins\$(VERSION) /d
!ENDIF