Commit c9a36881 authored by Rafaël Carré's avatar Rafaël Carré

contrib: run $(RECONF) in an arbitrary list of packages

Now they recognize arm-linux-androideabi toolchain
parent 99096954
......@@ -18,6 +18,7 @@ libdvbpsi: libdvbpsi-$(DVBPSI_VERSION).tar.bz2 .sum-dvbpsi
$(MOVE)
.dvbpsi: libdvbpsi
$(RECONF)
cd $< && $(HOSTVARS) ./configure $(HOSTCONF) --enable-release
cd $< && $(MAKE) install
touch $@
......@@ -23,7 +23,7 @@ endif
$(MOVE)
FLACCONF := $(HOSTCONF) \
--disable--thorough-tests \
--disable-thorough-tests \
--disable-doxygen-docs \
--disable-xmms-plugin \
--disable-cpplibs \
......@@ -38,6 +38,7 @@ endif
DEPS_flac = ogg $(DEPS_ogg)
.flac: flac
$(RECONF) -I m4
cd $< && $(HOSTVARS) ./configure $(FLACCONF)
cd $</src && $(MAKE) -C libFLAC install
cd $< && $(MAKE) -C include install
......
......@@ -18,6 +18,7 @@ libmodplug: libmodplug-$(MODPLUG_VERSION).tar.gz .sum-modplug
$(MOVE)
.modplug: libmodplug
$(RECONF)
cd $< && $(HOSTVARS) ./configure $(HOSTCONF)
cd $< && $(MAKE) install
touch $@
......@@ -25,7 +25,7 @@ endif
$(MOVE)
.ogg: libogg
#$(RECONF)
$(RECONF)
cd $< && $(HOSTVARS) ./configure $(HOSTCONF)
cd $< && $(MAKE) install
touch $@
......@@ -17,6 +17,7 @@ samplerate: libsamplerate-$(SAMPLERATE_VERSION).tar.gz .sum-samplerate
$(MOVE)
.samplerate: samplerate
$(RECONF) -I M4
cd $< && $(HOSTVARS) ./configure $(HOSTCONF)
cd $< && $(MAKE) install
touch $@
......@@ -43,9 +43,7 @@ endif
DEPS_theora = ogg $(DEPS_ogg)
.theora: libtheora
ifdef HAVE_WIN32
$(RECONF)
endif
cd $< && $(HOSTVARS) ./configure $(THEORACONF)
cd $< && $(MAKE) install
touch $@
......@@ -24,9 +24,7 @@ endif
$(MOVE)
.upnp: upnp
ifdef HAVE_WIN32
$(RECONF)
endif
cd $< && $(HOSTVARS) CFLAGS="$(CFLAGS) -O3 -DUPNP_STATIC_LIB $(LIBUPNP_ECFLAGS)" ./configure --disable-samples --without-documentation --disable-webserver $(HOSTCONF)
cd $< && $(MAKE) install
touch $@
......@@ -30,6 +30,7 @@ libvorbis: libvorbis-$(VORBIS_VERSION).tar.xz .sum-vorbis
DEPS_vorbis = ogg $(DEPS_ogg)
.vorbis: libvorbis
$(RECONF) -I m4
cd $< && $(HOSTVARS) ./configure $(HOSTCONF) --disable-docs --disable-examples --disable-oggtest
cd $< && $(MAKE) install
touch $@
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment