Graham Bloice's Win32 Makefile changes to build in batch mode (gets rid

of multiple compile lines in the output of the build, speeds the build
up).

svn path=/trunk/; revision=2024
This commit is contained in:
Guy Harris 2000-05-29 20:11:41 +00:00
parent 10ea13ed18
commit baaad29bf8
3 changed files with 11 additions and 2 deletions

View File

@ -1,7 +1,7 @@
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: nmake -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.39 2000/05/28 22:59:17 guy Exp $
# $Id: Makefile.nmake,v 1.40 2000/05/29 20:11:23 guy Exp $
include config.nmake
@ -16,6 +16,9 @@ CFLAGS=/MT -DHAVE_CONFIG_H $(LOCAL_CFLAGS) /I$(GLIB_DIR) /I$(GLIB_DIR)\gmodule \
/I$(GTK_DIR) /Iwiretap /I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 \
/I$(PCAP_DIR)/include
{$S}.c{$O}.obj::
$(CC) $(CFLAGS) -Fd$O\ -c $<
DISSECTOR_SOURCES = \
packet-aarp.c \
packet-afs.c \

View File

@ -7,6 +7,9 @@ CFLAGS=/MT /DHAVE_CONFIG_H /I.. /I../wiretap \
/I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 \
/I$(PCAP_DIR)\include $(LOCAL_CFLAGS)
{$S}.c{$O}.obj::
$(CC) $(CFLAGS) -Fd$O\ -c $<
# gtkclist.obj is not in here because it is gtk+-1.2 code,
# while the DLL for GTK+ on windows is gtk+-1.3, and there's
# some functions that have disappeared in gtk+-1.3. I might

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile.nmake,v 1.12 2000/04/29 07:35:07 guy Exp $
# $Id: Makefile.nmake,v 1.13 2000/05/29 20:11:31 guy Exp $
#
include ..\config.nmake
@ -8,6 +8,9 @@ include ..\config.nmake
CFLAGS=/MT /DHAVE_CONFIG_H /I$(GLIB_DIR) $(LOCAL_CFLAGS)
{$S}.c{$O}.obj::
$(CC) $(CFLAGS) -Fd$O\ -c $<
OBJECTS=ascend-grammar.obj \
ascend-scanner.obj \
ascend.obj \