aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Makefile.nmake
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2000-02-09 19:18:42 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2000-02-09 19:18:42 +0000
commitf9a8a11ef521d6d9ae6160a8d75085264f07d8e2 (patch)
tree084de5debceb828e118edd682e44e95e968dfc14 /plugins/Makefile.nmake
parentae1f986db1bc9e03e50dbf0a14985fb509e7a44f (diff)
Integrate Ed Meaney's <emeaney@altiga.com> changes for using libpcap
from WinDump with Ethereal. We now have packet capturing on Win32. :) svn path=/trunk/; revision=1612
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r--plugins/Makefile.nmake7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake
index 5da3f0c404..1292b55d75 100644
--- a/plugins/Makefile.nmake
+++ b/plugins/Makefile.nmake
@@ -4,13 +4,14 @@ include ..\config.nmake
CFLAGS=/DHAVE_CONFIG_H /I.. /I../wiretap /I. \
/I$(GLIB_DIR) /I$(GTK_DIR) /I$(GLIB_DIR)/gmodule \
- /I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 $(LOCAL_CFLAGS)
+ /I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 \
+ /I$(PCAP_DIR)\include $(LOCAL_CFLAGS)
OBJECTS=plugin_api.obj
-all: plugin_api.obj gryphon\gryphon.dll
+all: plugin_api.obj gryphon
-gryphon\gryphon.dll::
+gryphon::
cd gryphon
nmake -f Makefile.nmake
cd ..