wireshark/plugins/rlm/Makefile.nmake
Guy Harris a1467c86e1 From Duncan Sargeant: Cisco SS7 RUDP, RLM, and Session Management
support.

svn path=/trunk/; revision=10480
2004-03-25 11:21:07 +00:00

22 lines
494 B
Makefile

#
# $Id: Makefile.nmake,v 1.1 2004/03/25 11:21:07 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-rlm.obj
rlm.dll rlm.exp rlm.lib : $(OBJECTS) ..\plugin_api.obj
link -dll /out:rlm.dll $(OBJECTS) ..\plugin_api.obj \
$(GLIB_LIBS)
clean:
rm -f $(OBJECTS) rlm.dll rlm.exp rlm.lib $(PDB_FILE)
distclean: clean