annotate src/cfitsio.mk @ 4299:920efecee003

* src/cfitsio.mk: copy dll to bin dir
author John D
date Thu, 29 Dec 2016 15:41:35 -0500
parents de7c1c03561a
children 4a3747f4883c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3163
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
1 # This file is part of MXE.
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
2 # See index.html for further information.
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
3
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
4 PKG := cfitsio
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
5 $(PKG)_IGNORE :=
4142
de7c1c03561a cfitsio: update to v3.390
John Donoghue
parents: 3708
diff changeset
6 $(PKG)_VERSION := 3390
de7c1c03561a cfitsio: update to v3.390
John Donoghue
parents: 3708
diff changeset
7 $(PKG)_CHECKSUM := 818ee00793ae27dfc75752c2415d0a7230ad5066
3163
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
8 $(PKG)_SUBDIR := $(PKG)
3619
26e3a441d573 cfitsio: update to version 3370.
John Donoghue
parents: 3480
diff changeset
9 $(PKG)_FILE := $(PKG)$($(PKG)_VERSION).tar.gz
26e3a441d573 cfitsio: update to version 3370.
John Donoghue
parents: 3480
diff changeset
10 $(PKG)_URL := ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/$($(PKG)_FILE)
3163
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
11 $(PKG)_DEPS :=
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
12
3182
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
13 $(PKG)_MAKE_FLAGS :=
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
14 ifeq ($(BUILD_SHARED),yes)
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
15 $(PKG)_MAKE_FLAGS += shared
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
16 endif
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
17
3163
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
18 define $(PKG)_UPDATE
3708
d95b8b84cea7 enable additional $(PKG)_UPDATE targets.
John W. Eaton <jwe@octave.org>
parents: 3694
diff changeset
19 $(WGET) -q -O- "http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/?C=M;O=D" | \
d95b8b84cea7 enable additional $(PKG)_UPDATE targets.
John W. Eaton <jwe@octave.org>
parents: 3694
diff changeset
20 grep -i '<a href="cfitsio.*tar' | \
d95b8b84cea7 enable additional $(PKG)_UPDATE targets.
John W. Eaton <jwe@octave.org>
parents: 3694
diff changeset
21 $(SED) -n 's,.*cfitsio\([0-9][^>]*\)\.tar.*,\1,p' | \
d95b8b84cea7 enable additional $(PKG)_UPDATE targets.
John W. Eaton <jwe@octave.org>
parents: 3694
diff changeset
22 head -1
3163
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
23 endef
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
24
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
25 ifeq ($(MXE_SYSTEM),msvc)
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
26 define $(PKG)_BUILD
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
27 $(SED) -i 's/cfitsio\.dll/$(LIBRARY_PREFIX)cfitsio$(LIBRARY_SUFFIX).dll/g' '$(1)/makefile.vcc'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
28 cd '$(1)' && env -u MAKE -u MAKEFLAGS nmake -f makefile.vcc
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
29 $(SED) -e 's#@prefix@#$(HOST_PREFIX)#' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
30 -e 's#@exec_prefix@#$${prefix}#' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
31 -e 's#@libdir@#$${exec_prefix}/lib#' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
32 -e 's#@includedir@#$${prefix}/include#' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
33 -e 's#@LIBS@##' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
34 -e '/^Libs\.private:/ { s#-lm\>##; }' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
35 -e 's#@CFITSIO_MAJOR@#$(word 1,$(subst ., ,$($(PKG)_VERSION)))#' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
36 -e 's#@CFITSIO_MINOR@#$(word 2,$(subst ., ,$($(PKG)_VERSION)))#' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
37 '$(1)/cfitsio.pc.in' > '$(1)/cfitsio.pc'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
38 $(INSTALL) -d '$(HOST_BINDIR)'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
39 $(INSTALL) '$(1)/$(LIBRARY_PREFIX)cfitsio$(LIBRARY_SUFFIX).dll' '$(HOST_BINDIR)'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
40 $(INSTALL) -d '$(HOST_LIBDIR)'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
41 $(INSTALL) '$(1)/cfitsio.lib' '$(HOST_LIBDIR)'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
42 $(INSTALL) -d '$(HOST_LIBDIR)/pkgconfig'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
43 $(INSTALL) '$(1)/cfitsio.pc' '$(HOST_LIBDIR)/pkgconfig'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
44 $(INSTALL) -d '$(HOST_INCDIR)'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
45 for f in fitsio.h fitsio2.h longnam.h drvrsmem.h; do \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
46 $(INSTALL) "$(1)/$$f" '$(HOST_INCDIR)'; \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
47 done
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
48 endef
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
49 else
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
50 define $(PKG)_BUILD
3182
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
51 cd '$(1)' && '$(1)/configure' \
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
52 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
53 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
54 --prefix='$(HOST_PREFIX)'
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
55 $(MAKE) -C '$(1)' -j '$(JOBS)' $($(PKG)_MAKE_FLAGS)
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
56 $(MAKE) -C '$(1)' -j 1 install
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
57
4299
920efecee003 * src/cfitsio.mk: copy dll to bin dir
John D
parents: 4142
diff changeset
58 if [ "$(MXE_SYSTEM)" == "mingw" ]; then \
920efecee003 * src/cfitsio.mk: copy dll to bin dir
John D
parents: 4142
diff changeset
59 $(INSTALL) '$(1)/libcfitsio$(LIBRARY_SUFFIX).dll' '$(HOST_BINDIR)'; \
920efecee003 * src/cfitsio.mk: copy dll to bin dir
John D
parents: 4142
diff changeset
60 fi
3163
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
61 endef
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
62 endif