You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
349 B
11 lines
349 B
4 months ago
|
# SPDX-License-Identifier: GPL-2.0+
|
||
|
# Makefile.am
|
||
|
|
||
|
AUTOMAKE_OPTIONS = foreign
|
||
|
bin_PROGRAMS = mkfs.erofs
|
||
|
AM_CPPFLAGS = ${libuuid_CFLAGS} ${libselinux_CFLAGS}
|
||
|
mkfs_erofs_SOURCES = main.c
|
||
|
mkfs_erofs_CFLAGS = -Wall -Werror -I$(top_srcdir)/include
|
||
|
mkfs_erofs_LDADD = ${libuuid_LIBS} $(top_builddir)/lib/liberofs.la ${libselinux_LIBS} ${liblz4_LIBS}
|
||
|
|