summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile15
-rw-r--r--src/Makefile.osx34
-rw-r--r--src/ivy-glib.pc.in6
-rw-r--r--src/version.h2
4 files changed, 41 insertions, 16 deletions
diff --git a/src/Makefile b/src/Makefile
index a2b8298..193ffc8 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -17,7 +17,7 @@
# change this in version.h too !!!!
MAJOR=3
-MINOR=14
+MINOR=15
PERHAPS64 := $(shell getconf LONG_BIT | perl -ne "print /64/ ? '64' : '';")
LIB = /lib$(PERHAPS64)
@@ -241,8 +241,7 @@ libtclivy.so.$(MAJOR).$(MINOR): $(TCLOBJ)
distclean: clean
clean:
- -rm -f $(TARGETS) $(TARGETLIBS) *.o *.a *.so *.so.* *~
- -rm -f ivy-glib.pc
+ -rm -f $(TARGETS) $(TARGETLIBS) *.o *.a *.so *.so.* *~ *.pc
@(cd $(TOOLS_DIR) && $(MAKE) clean)
@@ -331,9 +330,11 @@ tools_omp: libomp
rpm::
/usr/bin/rpmize
-pkgconf:
- sed -e 's,@PREFIX@,$(PREFIX),; s,@DESTDIR@,$(DESTDIR),; s,@MAJOR@,$(MAJOR),; s,@MINOR@,$(MINOR),; s,@PCREINC@,$(PCREINC),; s,@REGEXP@,$(REGEXP),; s,@PCRELIB@,$(PCRELIB),; s,@EXTRALIB@,$(EXTRALIB),' ivy-glib.pc.in > ivy-glib.pc
+pkgconf:
+ for f in *.pc.in ; do \
+ sed -e 's,@PREFIX@,$(PREFIX),; s,@MAJOR@,$(MAJOR),; s,@MINOR@,$(MINOR),; s,@PCREINC@,$(PCREINC),; s,@REGEXP@,$(REGEXP),; s,@PCRELIB@,$(PCRELIB),; s,@EXTRALIB@,$(EXTRALIB),' $$f > $$(echo $$f | cut -f 1,2 -d .); \
+ done
-installpkgconf:
+installpkgconf: pkgconf
test -d $(DESTDIR)$(PREFIX)/lib/pkgconfig || mkdir -p $(DESTDIR)$(PREFIX)/lib/pkgconfig
- install -m 644 ivy-glib.pc $(DESTDIR)$(PREFIX)/lib/pkgconfig
+ install -m 644 *.pc $(DESTDIR)$(PREFIX)/lib/pkgconfig
diff --git a/src/Makefile.osx b/src/Makefile.osx
index 974fb94..7e4aad6 100644
--- a/src/Makefile.osx
+++ b/src/Makefile.osx
@@ -1,3 +1,26 @@
+#
+# Ivy, C interface
+#
+# Copyright (C) 1997-2014
+# Centre d'Études de la Navigation Aérienne
+#
+# Makefile.osx
+#
+# Authors: François-Régis Colin <fcolin@cena.fr>
+# Stéphane Chatty <chatty@cena.fr>
+# Yannick Jestin <jestin@cena.fr>
+# Piotr Esden-Tempski <piotr@esden.net>
+#
+# Please refer to file version.h for the
+# copyright notice regarding this software
+#
+
+# change this in version.h too !!!!
+MAJOR=3
+MINOR=15
+
+LIB=/lib
+
LBITS := $(shell getconf LONG_BIT)
ifeq ($(LBITS),64)
FPIC = -fPIC
@@ -148,15 +171,16 @@ install: installlibs installbins includes installpkgconf
# ------------------------------------------------------------------------------------------
clean:
- -rm -f *.o *.a *.dylib *.dylib.* *~
- -rm -f ivy-glib.pc
+ -rm -f *.o *.a *.dylib *.dylib.* *~ *.pc
@(cd $(TOOLS_DIR) && $(MAKE) -f Makefile.osx clean)
# ------------------------------------------------------------------------------------------
pkgconf:
- sed -e 's,@PREFIX@,$(PREFIX),; s,@DESTDIR@,$(DESTDIR),; s,@MAJOR@,$(MAJOR),; s,@MINOR@,$(MINOR),; s,@PCREINC@,$(PCREINC),; s,@REGEXP@,$(REGEXP),; s,@PCRELIB@,$(PCRELIB),; s,@EXTRALIB@,$(EXTRALIB),' ivy-glib.pc.in > ivy-glib.pc
+ for f in *.pc.in ; do \
+ sed -e 's,@PREFIX@,$(PREFIX),; s,@MAJOR@,$(MAJOR),; s,@MINOR@,$(MINOR),; s,@PCREINC@,$(PCREINC),; s,@REGEXP@,$(REGEXP),; s,@PCRELIB@,$(PCRELIB),; s,@EXTRALIB@,$(EXTRALIB),' $$f > $$(echo $$f | cut -f 1,2 -d .); \
+ done
-installpkgconf:
+installpkgconf: pkgconf
test -d $(DESTDIR)$(PREFIX)/lib/pkgconfig || mkdir -p $(DESTDIR)$(PREFIX)/lib/pkgconfig
- install -m 644 ivy-glib.pc $(DESTDIR)$(PREFIX)/lib/pkgconfig
+ install -m 644 *.pc $(DESTDIR)$(PREFIX)/lib/pkgconfig
diff --git a/src/ivy-glib.pc.in b/src/ivy-glib.pc.in
index e2186a9..5794064 100644
--- a/src/ivy-glib.pc.in
+++ b/src/ivy-glib.pc.in
@@ -1,4 +1,4 @@
-prefix=@DESTDIR@/@PREFIX@
+prefix=@PREFIX@
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
@@ -7,5 +7,5 @@ Name: ivy-glib
Description: A software bus (Glib main loop)
Requires: glib-2.0
Version: @MAJOR@.@MINOR@
-Libs: -L${libdir} -lglibivy @PCREINC@
-Cflags: -I${includedir} @REGEXP@ @PCRELIB@ @EXTRALIB@
+Libs: -L${libdir} -lglibivy @PCRELIB@ @EXTRALIB@
+Cflags: -I${includedir} @REGEXP@ @PCREINC@
diff --git a/src/version.h b/src/version.h
index a75a7fa..11548f7 100644
--- a/src/version.h
+++ b/src/version.h
@@ -26,4 +26,4 @@
*
*/
#define IVYMAJOR_VERSION 3
-#define IVYMINOR_VERSION 14
+#define IVYMINOR_VERSION 15