openwrt/package/utils/fitblk/src/Makefile
Daniel Golle ddcc8f9f4e package: add fitblk util to release /dev/fit* devices
Add minimalistic tool to allow releasing /dev/fit* devices which is
needed on sysupgrade when using the fitblk driver.
The package is hidden in menuconfig, it should only be selected by
adding it to the default package selection of boards using it.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2024-02-15 19:06:36 +00:00

8 lines
86 B
Makefile

all: fitblk
fitblk:
$(CC) $(CFLAGS) -o $@ fitblk.c $(LDFLAGS)
clean:
rm -f fitblk