summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJonathan Bauer2020-05-29 14:29:05 +0200
committerJonathan Bauer2020-05-29 14:29:05 +0200
commitc3881247493c6c984ae38411c14f9121fbc60df3 (patch)
tree1ae26fb699db72d05d24e1be1e74ce1d31af9d96 /Makefile
downloadxloop-c3881247493c6c984ae38411c14f9121fbc60df3.tar.gz
xloop-c3881247493c6c984ae38411c14f9121fbc60df3.tar.xz
xloop-c3881247493c6c984ae38411c14f9121fbc60df3.zip
Initial code from Manuel Bentele
kept unchanged for reference.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..a82cd7a
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: GPL-2.0
+
+loop-y += loop_main.o loop_file_fmt.o
+obj-$(CONFIG_BLK_DEV_LOOP) += loop.o
+
+obj-$(CONFIG_BLK_DEV_CRYPTOLOOP) += cryptoloop.o
+
+obj-$(CONFIG_BLK_DEV_LOOP_FILE_FMT_RAW) += loop_file_fmt_raw.o
+
+loop_file_fmt_qcow-y += loop_file_fmt_qcow_main.o loop_file_fmt_qcow_cluster.o loop_file_fmt_qcow_cache.o
+obj-$(CONFIG_BLK_DEV_LOOP_FILE_FMT_QCOW) += loop_file_fmt_qcow.o