Initial commit
This commit is contained in:
17
Makefile
Normal file
17
Makefile
Normal file
@@ -0,0 +1,17 @@
|
||||
SHELL ?= /bin/sh
|
||||
|
||||
.PHONY: rootfs
|
||||
rootfs:
|
||||
$(SHELL) mkrootfs.sh _build/rootfs
|
||||
|
||||
.PHONY: initramfs
|
||||
initramfs: _build/rootfs/boot/initramfs.img
|
||||
|
||||
_build/rootfs/boot/initramfs.img: \
|
||||
_build/rootfs/bin/dracut \
|
||||
mkinitramfs.sh
|
||||
$(SHELL) mkinitramfs.sh _build/rootfs
|
||||
|
||||
.PHONY: publish
|
||||
publish:
|
||||
$(SHELL) publish.sh _build/rootfs
|
||||
Reference in New Issue
Block a user