libv4l: drop -lrt workaround
[buildroot-gz.git] / fs / cramfs / cramfs.mk
blob747237290f5011bf4b7fc0de7ede205b2016688f
1 ################################################################################
3 # Build the cramfs root filesystem image
5 ################################################################################
7 ifeq ($(BR2_ENDIAN),"BIG")
8 CRAMFS_OPTS = -b
9 else
10 CRAMFS_OPTS = -l
11 endif
13 define ROOTFS_CRAMFS_CMD
14 $(HOST_DIR)/usr/bin/mkcramfs $(CRAMFS_OPTS) $(TARGET_DIR) $@
15 endef
17 ROOTFS_CRAMFS_DEPENDENCIES = host-cramfs
19 $(eval $(call ROOTFS_TARGET,cramfs))