mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-03 23:12:13 +00:00
Also remove the redundant $(call ...).
This is a purely mechanical change, performed with
find package linux toolchain boot -name \*.mk | \
xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \
-e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \
-e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/'
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
636 B
Makefile
19 lines
636 B
Makefile
################################################################################
|
|
#
|
|
# libelementary
|
|
#
|
|
################################################################################
|
|
|
|
LIBELEMENTARY_VERSION = 0.8.0.65643
|
|
LIBELEMENTARY_SOURCE = elementary-$(LIBELEMENTARY_VERSION).tar.bz2
|
|
LIBELEMENTARY_SITE = http://download.enlightenment.org/snapshots/2011-11-28
|
|
LIBELEMENTARY_INSTALL_STAGING = YES
|
|
|
|
LIBELEMENTARY_DEPENDENCIES = libeina libevas libecore libedje host-libedje \
|
|
host-libeet
|
|
|
|
LIBELEMENTARY_CONF_OPT = --with-edje-cc=$(HOST_DIR)/usr/bin/edje_cc \
|
|
--with-eet-eet=$(HOST_DIR)/usr/bin/eet
|
|
|
|
$(eval $(autotools-package))
|