mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-02 21:48:20 +03: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>
22 lines
604 B
Makefile
22 lines
604 B
Makefile
FEH_VERSION = 2.5
|
|
FEH_SOURCE = feh-$(FEH_VERSION).tar.bz2
|
|
FEH_SITE = http://feh.finalrewind.org/
|
|
FEH_DEPENDENCIES = libcurl giblib imlib2 libpng xlib_libXinerama xlib_libXt
|
|
|
|
define FEH_BUILD_CMDS
|
|
$(MAKE1) CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS)" \
|
|
-C $(@D) all
|
|
endef
|
|
|
|
define FEH_INSTALL_TARGET_CMDS
|
|
$(MAKE1) CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) " \
|
|
DESTDIR=$(TARGET_DIR) -C $(@D) install
|
|
endef
|
|
|
|
define FEH_UNINSTALL_TARGET_CMDS
|
|
$(MAKE1) CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) " \
|
|
DESTDIR=$(TARGET_DIR) -C $(@D) uninstall
|
|
endef
|
|
|
|
$(eval $(generic-package))
|