wireshark/plugins/Makefile.nmake
Guy Harris 3c9a310b6d Graham Bloice's changes to, on Win32 using Microsoft's "nmake":
build "register.c" in the top-level Makefile;

	set path in "config.nmake" to include the Cygwin directory for
	tools - those tools are needed to build "register.c";

	remove constructed source files, and some additional object
	files, when doing "nmake clean".

svn path=/trunk/; revision=1896
2000-04-29 07:35:07 +00:00

28 lines
516 B
Makefile

#
# $Id: Makefile.nmake,v 1.5 2000/04/29 07:34:48 guy Exp $
#
include ..\config.nmake
############### no need to modify below this line #########
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 \
/I$(PCAP_DIR)\include $(LOCAL_CFLAGS)
OBJECTS=plugin_api.obj
all: plugin_api.obj gryphon
gryphon::
cd gryphon
nmake -f Makefile.nmake
cd ..
clean:
rm plugin_api.obj
cd gryphon
nmake -f Makefile.nmake clean
cd ..