summaryrefslogtreecommitdiff
path: root/wsutil/nghttp2/Makefile.nmake
diff options
context:
space:
mode:
authorGraham Bloice <graham.bloice@trihedral.com>2014-07-02 14:10:02 +0100
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2014-07-09 05:31:31 +0000
commit4b5967f68391c9ea048c6ca76eef893e764d4779 (patch)
treeeb816e0ed6784860067300e6ee6313bd88649e8f /wsutil/nghttp2/Makefile.nmake
parent5f0fd977d134cf7169e4c7131433fa75c4cd5e27 (diff)
downloadwireshark-4b5967f68391c9ea048c6ca76eef893e764d4779.tar.gz
Moved nghttp2 to epan
Cleaned up nghttp2 build Change-Id: I9f7adc12936155e0ffc01ec825b5aff95279f97d Reviewed-on: https://code.wireshark.org/review/2937 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'wsutil/nghttp2/Makefile.nmake')
-rw-r--r--wsutil/nghttp2/Makefile.nmake43
1 files changed, 0 insertions, 43 deletions
diff --git a/wsutil/nghttp2/Makefile.nmake b/wsutil/nghttp2/Makefile.nmake
deleted file mode 100644
index 0f4e747e1e..0000000000
--- a/wsutil/nghttp2/Makefile.nmake
+++ /dev/null
@@ -1,43 +0,0 @@
-## Makefile for building nghttp2.lib with Microsoft C and nmake
-## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
-#
-
-include ..\..\config.nmake
-include Makefile.common
-
-############### no need to modify below this line #########
-
-CFLAGS=$(WARNINGS_ARE_ERRORS) $(STANDARD_CFLAGS) \
- /I../.. $(GLIB_CFLAGS) -DWS_BUILD_DLL
-
-.c.obj::
- $(CC) $(CFLAGS) -Fd.\ -c $<
-
-NGHTTP2_OBJECTS = $(LIBNGHTTP2_SRC:.c=.obj)
-
-nghttp2.lib: $(NGHTTP2_OBJECTS)
- link /lib /out:nghttp2.lib $(NGHTTP2_OBJECTS)
-
-clean:
- rm -f $(NGHTTP2_OBJECTS) nghttp2.lib *.pdb *.sbr
-
-distclean: clean
-
-maintainer-clean: distclean
-
-checkapi:
- $(PERL) ../../tools/checkAPIs.pl -g termoutput -build \
- $(LIBNGHTTP2_SRC)
-
-#
-# Editor modelines - http://www.wireshark.org/tools/modelines.html
-#
-# Local variables:
-# c-basic-offset: 8
-# tab-width: 8
-# indent-tabs-mode: t
-# End:
-#
-# vi: set shiftwidth=8 tabstop=8 noexpandtab:
-# :indentSize=8:tabSize=8:noTabs=false:
-#