Add some win32-specific targets in .cvsignore's.

Replace 'nmake' with $(MAKE) /$(MAKEFLAGS), from Mike Frisch.

svn path=/trunk/; revision=3108
This commit is contained in:
Gilbert Ramirez 2001-03-06 13:08:13 +00:00
parent d21e83b98b
commit 4b6b3da4e7
8 changed files with 32 additions and 26 deletions

View File

@ -1,7 +1,7 @@
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: nmake -f makefile.nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.82 2001/02/27 19:40:58 guy Exp $
# $Id: Makefile.nmake,v 1.83 2001/03/06 13:08:07 gram Exp $
include config.nmake
@ -297,38 +297,38 @@ clean:
rm -f $(ethereal_OBJECTS) $(EXTRA_OBJECTS) $(EXECUTABLES) \
tethereal.obj editcap.obj register.c rdps.obj
cd wiretap
nmake -f Makefile.nmake clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../gtk
nmake -f Makefile.nmake clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../epan
nmake -f Makefile.nmake clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../plugins
nmake -f Makefile.nmake clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../tools
nmake -f Makefile.nmake clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
tools::
cd tools
nmake -f Makefile.nmake
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
wiretap::
cd wiretap
nmake -f Makefile.nmake
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
gtk::
cd gtk
nmake -f Makefile.nmake
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
epan::
cd epan
nmake -f Makefile.nmake
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
plugins::
cd plugins
nmake -f Makefile.nmake
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..

View File

@ -2,10 +2,10 @@
GTK_VERSION=1.3
GLIB_VERSION=1.3
GLIB_DIR=T:\w32-ix86\glib
GTK_DIR=T:\w32-ix86\gtk+
GLIB_DIR=F:\gram\win32tools\src\glib
GTK_DIR=F:\gram\win32tools\src\gtk+
PCAP_DIR=T:\w32-ix86\WPdpack
PCAP_DIR=F:\gram\win32tools\WPdpack
LOCAL_CFLAGS=-Zi
LOCAL_LDFLAGS=/DEBUG

View File

@ -14,3 +14,5 @@ aclocal.m4
configure
stamp-h
config.log
*.lib
*.obj

View File

@ -48,17 +48,17 @@ config.h : config.h.win32
clean:
rm -f $(OBJECTS) ethereal.lib
cd ftypes
nmake -f Makefile.nmake clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../dfilter
nmake -f Makefile.nmake clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
ftypes::
cd ftypes
nmake -f Makefile.nmake
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
dfilter::
cd dfilter
nmake -f Makefile.nmake
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..

View File

@ -6,3 +6,5 @@ grammar.h
grammar.out
Makefile.in
grammar.c
*.lib
*.obj

View File

@ -2,3 +2,5 @@
.deps
Makefile
Makefile.in
*.lib
*.obj

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile.nmake,v 1.8 2000/11/12 11:08:45 guy Exp $
# $Id: Makefile.nmake,v 1.9 2001/03/06 13:08:12 gram Exp $
#
include ..\config.nmake
@ -17,18 +17,18 @@ all: plugin_api.obj gryphon mgcp
gryphon::
cd gryphon
nmake -f Makefile.nmake
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
mgcp::
cd mgcp
nmake -f Makefile.nmake
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
clean:
rm -f plugin_api.obj
cd gryphon
nmake -f Makefile.nmake clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../mgcp
nmake -f Makefile.nmake clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..

View File

@ -4,10 +4,10 @@ all: lemon
clean:
cd lemon
nmake -f Makefile.nmake clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
lemon::
cd lemon
nmake -f Makefile.nmake
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..