mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-25 14:33:29 +08:00
acf7bb7217
[Peter: fix install, help text] Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
20 lines
486 B
Makefile
20 lines
486 B
Makefile
#############################################################
|
|
#
|
|
# fmtools
|
|
#
|
|
#############################################################
|
|
|
|
FMTOOLS_VERSION = 1.0.2
|
|
FMTOOLS_SITE = http://www.stanford.edu/~blp/fmtools/
|
|
|
|
define FMTOOLS_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define FMTOOLS_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/fm $(TARGET_DIR)/usr/sbin/fm
|
|
$(INSTALL) -D -m 0755 $(@D)/fmscan $(TARGET_DIR)/usr/sbin/fmscan
|
|
endef
|
|
|
|
$(eval $(call GENTARGETS))
|