Graham Bloice's Win32 Makefile changes to build in batch mode (gets rid
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 29 May 2000 20:11:41 +0000 (20:11 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 29 May 2000 20:11:41 +0000 (20:11 +0000)
of multiple compile lines in the output of the build, speeds the build
up).

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2024 f5534014-38df-0310-8fa8-9805f1628bb7

Makefile.nmake
gtk/Makefile.nmake
wiretap/Makefile.nmake

index d5070bc4364605033646ad69e8f38b6b331fdc18..72da1330bef337429fc7b9bcc2fd446032977e6e 100644 (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   \
index 6b78883599713fde52e1461fd486234d1f796afd..02fe32f525402fcf35df16d84f5a0ecab16dc0b2 100644 (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
index 486a50ea8f8248f1a43d27a87aac69050abb0c9a..012d814b5722557d2d46473fe5574600b0bd033e 100644 (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 \