wireshark/plugins/Makefile.nmake

27 lines
498 B
Makefile

#
# $Id: Makefile.nmake,v 1.4 2000/04/12 21:51:39 gram 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:
cd gryphon
nmake -f Makefile.nmake clean
cd ..