From 3829cbaf043c7a8a69fbbd3bca668d7e503be6d0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Wed, 14 Mar 2012 09:23:19 +0000 Subject: [PATCH] Add a makefile to update msinttypes headers --- thirdparty/msvc/.gitignore | 1 + thirdparty/msvc/Makefile | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 thirdparty/msvc/.gitignore create mode 100644 thirdparty/msvc/Makefile diff --git a/thirdparty/msvc/.gitignore b/thirdparty/msvc/.gitignore new file mode 100644 index 0000000..2460008 --- /dev/null +++ b/thirdparty/msvc/.gitignore @@ -0,0 +1 @@ +!Makefile diff --git a/thirdparty/msvc/Makefile b/thirdparty/msvc/Makefile new file mode 100644 index 0000000..ab18b4d --- /dev/null +++ b/thirdparty/msvc/Makefile @@ -0,0 +1,10 @@ +update: \ + inttypes.h \ + stdint.h + +%.h: FORCE + wget -N http://msinttypes.googlecode.com/svn/trunk/$@ + +.PHONY: update + +FORCE: -- 2.43.0