mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 10:04:00 +08:00
18 lines
436 B
Makefile
18 lines
436 B
Makefile
|
|
SUBDIRS = include libntfs-3g src
|
|
|
|
EXTRA_DIST = AUTHORS CREDITS COPYING INSTALL NEWS README autogen.sh
|
|
AUTOMAKE_OPTIONS = gnu
|
|
|
|
MAINTAINERCLEANFILES = configure Makefile.in aclocal.m4 compile depcomp \
|
|
install-sh ltmain.sh missing config.guess config.sub config.h.in INSTALL
|
|
|
|
libtool: $(LIBTOOL_DEPS)
|
|
$(SHELL) ./config.status --recheck
|
|
|
|
strip:
|
|
(cd src && $(MAKE) strip) || exit 1;
|
|
|
|
libs:
|
|
(cd libntfs-3g && $(MAKE) libs) || exit 1;
|