aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/wimax/Makefile.nmake
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2007-05-25 23:40:42 +0000
committerGerald Combs <gerald@wireshark.org>2007-05-25 23:40:42 +0000
commita491fec183044f6065b8d92a3775f5130049b636 (patch)
tree3f899da6a2bb6dead6dbfa2392764a88ac26faa6 /plugins/wimax/Makefile.nmake
parent1e7c1bc0369f0c962ed73e8e34fa5ba7fa1a6c3d (diff)
From Mike Harvey: Support for WiMAX and the WiMAX M2M encapsulation protocol.
Add support for WiMAX and M2M to various makefiles and installer files. Add basic support for M2M to randpkt. svn path=/trunk/; revision=21945
Diffstat (limited to 'plugins/wimax/Makefile.nmake')
-rw-r--r--plugins/wimax/Makefile.nmake40
1 files changed, 40 insertions, 0 deletions
diff --git a/plugins/wimax/Makefile.nmake b/plugins/wimax/Makefile.nmake
new file mode 100644
index 0000000000..1bf5985379
--- /dev/null
+++ b/plugins/wimax/Makefile.nmake
@@ -0,0 +1,40 @@
+#
+#
+
+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)
+
+#LDFLAGS = /NOLOGO /INCREMENTAL:no /MACHINE:I386 $(LOCAL_LDFLAGS)
+
+!IFDEF ENABLE_LIBWIRESHARK
+LINK_PLUGIN_WITH=..\..\epan\libwireshark.lib
+CFLAGS=/DHAVE_WIN32_LIBWIRESHARK_LIB /D_NEED_VAR_IMPORT_ $(CFLAGS)
+
+OBJECTS=packet-wmx.obj wimax_cdma_code_decoder.obj wimax_fch_decoder.obj \
+ wimax_pdu_decoder.obj wimax_ffb_decoder.obj wimax_hack_decoder.obj \
+ wimax_phy_attributes_decoder.obj mac_hd_generic_decoder.obj \
+ mac_hd_type1_decoder.obj mac_hd_type2_decoder.obj \
+ mac_mgmt_msg_decoder.obj msg_dcd.obj msg_ucd.obj msg_dlmap.obj msg_ulmap.obj \
+ msg_rng_req.obj msg_rng_rsp.obj msg_reg_req.obj msg_reg_rsp.obj msg_dsa.obj \
+ msg_dsc.obj msg_dsd.obj msg_arq.obj msg_sbc.obj msg_pkm.obj msg_aas_fbck.obj \
+ msg_dreg.obj msg_fpc.obj msg_pmc.obj msg_prc_lt_ctrl.obj wimax_harq_map_decoder.obj \
+ msg_aas_beam.obj msg_res_cmd.obj msg_rep.obj msg_clk_cmp.obj msg_dsx_rvd.obj \
+ wimax_compact_dlmap_ie_decoder.obj wimax_compact_ulmap_ie_decoder.obj \
+ wimax_utils.obj crc.obj crc_data.obj wimax_tlv.obj
+
+wimax.dll wimax.exp wimax.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
+ link -dll /out:wimax.dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
+ $(GLIB_LIBS)
+
+!ENDIF
+
+clean:
+ rm -f $(OBJECTS) wimax.dll wimax.exp wimax.lib $(PDB_FILE)
+
+distclean: clean
+
+maintainer-clean: distclean