wireshark/plugins/asn1/Makefile.nmake

32 lines
878 B
Makefile
Raw Normal View History

#
# $Id: Makefile.nmake,v 1.6 2004/02/18 20:45:53 gerald Exp $
#
include ..\..\config.nmake
############### no need to modify below this line #########
# XXX: that's odd here, no GTK stuff should be in the plugins dir,
# so move all GTK specific stuff into gtk dir.
# As GTK1_CFLAGS isn't correct here, we don't have GTK_CFLAGS
# any longer, so no better choice here. If the move of GTK code
# finished, replace this with GLIB_CFLAGS.
# The same applies to GTK1_LIBS -> GLIB_LIBS.
CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap $(GTK1_CFLAGS) \
/I$(PCAP_DIR)\include -D_U_="" $(LOCAL_CFLAGS)
OBJECTS=packet-asn1.obj
asn1.dll asn1.exp asn1.lib : $(OBJECTS) ..\plugin_api.obj
link -dll /out:asn1.dll $(OBJECTS) ..\plugin_api.obj \
!IFDEF GTK1_DIR
$(GTK1_LIBS)
!ELSE
$(GTK2_LIBS)
!ENDIF
clean:
rm -f $(OBJECTS) asn1.dll asn1.exp asn1.lib $(PDB_FILE)
distclean: clean