mirror of
https://github.com/containers/fuse-overlayfs.git
synced 2025-08-03 18:05:58 -04:00

A FUSE implementation of overlay. Not as stable and mature as the kernel FS. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
13 lines
245 B
Makefile
13 lines
245 B
Makefile
SUBDIRS = lib
|
|
|
|
bin_PROGRAMS = containerfs
|
|
|
|
ACLOCAL_AMFLAGS = -Im4
|
|
|
|
EXTRA_DIST = m4/gnulib-cache.m4
|
|
|
|
containerfs_CFLAGS = -I . -I lib $(FUSE_CFLAGS)
|
|
containerfs_LDFLAGS = $(FUSE_LIBS)
|
|
containerfs_LDADD = lib/libgnu.a
|
|
containerfs_SOURCES = main.c
|