diff options
author | Simon Josefsson <simon@josefsson.org> | 2011-10-26 11:00:33 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2011-10-26 11:00:50 +0200 |
commit | 52d189b435eb7511eda816787e76709a317f6927 (patch) | |
tree | c2622d03f7a7913b24c3585fe053c7a35d54e695 /windows/libtasn14win.mk | |
parent | fe72f074ba67c48ec83143931b4d162bf2ea377b (diff) | |
download | libtasn1-52d189b435eb7511eda816787e76709a317f6927.tar.gz libtasn1-52d189b435eb7511eda816787e76709a317f6927.tar.bz2 libtasn1-52d189b435eb7511eda816787e76709a317f6927.zip |
build: Added windows/libtasn14win.mk rules to produce Windows binaries.
Diffstat (limited to 'windows/libtasn14win.mk')
-rw-r--r-- | windows/libtasn14win.mk | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/windows/libtasn14win.mk b/windows/libtasn14win.mk new file mode 100644 index 0000000..e82fcde --- /dev/null +++ b/windows/libtasn14win.mk @@ -0,0 +1,51 @@ +# Copyright (C) 2011 Free Software Foundation, Inc. +# +# This file is part of LIBTASN1. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +# Written by Simon Josefsson October 2011. + +PACKAGE = libtasn1 +distdir = $(PACKAGE)-$(VERSION) +TGZ = $(distdir).tar.gz +URL = ftp://ftp.gnu.org/gnu/$(PACKAGE)/$(TGZ) + +all: + @echo 'Usage examples:' + @echo ' make -f libtasn14win.mk libtasn14win VERSION=2.10' + @echo ' make -f libtasn14win.mk libtasn14win32 VERSION=2.10 CHECK=check' + +libtasn14win: libtasn14win32 libtasn14win64 + +libtasn14win32: + $(MAKE) -f libtasn14win.mk doit ARCH=32 HOST=i686-w64-mingw32 CHECK=check + +libtasn14win64: + $(MAKE) -f libtasn14win.mk doit ARCH=64 HOST=x86_64-w64-mingw32 + +doit: + rm -rf tmp && mkdir tmp && cd tmp && \ + cp ../../$(TGZ) . || wget $(URL) && \ + tar xfa $(TGZ) && \ + cd $(distdir) && \ + ./configure --host=$(HOST) --build=x86_64-unknown-linux-gnu --prefix=$(PWD)/tmp/root && \ + make $(CHECK) install && \ + cd .. && \ + cd root && \ + zip -r ../../$(distdir)-win$(ARCH).zip * + +upload: + gnupload --to ftp.gnu.org:$(PACKAGE) $(distdir)-win32.zip $(distdir)-win64.zip + cp $(distdir)-win32.zip $(distdir)-win32.zip.sig $(distdir)-win64.zip $(distdir)-win64.zip.sig ../../releases/$(PACKAGE)/ |