Fix the Makefile to match other plugin Makefiles.

svn path=/trunk/; revision=8804
This commit is contained in:
Guy Harris 2003-10-28 19:27:49 +00:00
parent 67406fcfd2
commit 32975a11e6
1 changed files with 21 additions and 21 deletions

View File

@ -1,21 +1,21 @@
#
# $Id: Makefile.nmake,v 1.1 2003/10/28 07:02:38 guy Exp $
#
include ..\..\config.nmake
############### no need to modify below this line #########
CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap \
/I$(GLIB_DIR) /I$(GTK_DIR) /I$(GLIB_DIR)/gmodule \
/I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 \
/I$(PCAP_DIR)\include -D_U_="" $(LOCAL_CFLAGS)
OBJECTS=packet-asn1.obj
asn1.dll asn1.exp asn1.lib : packet-asn1.obj ..\plugin_api.obj
link -dll /out:asn1.dll packet-asn1.obj ..\plugin_api.obj \
$(GLIB_DIR)\glib-$(GLIB_VERSION).lib
clean:
rm -f $(OBJECTS) asn1.dll asn1.exp asn1.lib $(PDB_FILE)
#
# $Id: Makefile.nmake,v 1.2 2003/10/28 19:27:49 guy Exp $
#
include ..\..\config.nmake
############### no need to modify below this line #########
CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap $(GLIB_CFLAGS) \
/I$(PCAP_DIR)\include -D_U_="" $(LOCAL_CFLAGS)
OBJECTS=packet-asn1.obj
asn1.dll asn1.exp asn1.lib : packet-asn1.obj ..\plugin_api.obj
link -dll /out:asn1.dll packet-asn1.obj ..\plugin_api.obj \
$(GLIB_LIBS)
clean:
rm -f $(OBJECTS) asn1.dll asn1.exp asn1.lib $(PDB_FILE)
distclean: clean