[go: up one dir, main page]

File: Makefile.am

package info (click to toggle)
fuse-posixovl 1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 552 kB
  • sloc: ansic: 1,634; sh: 1,303; makefile: 29
file content (19 lines) | stat: -rw-r--r-- 761 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- Makefile -*-

AM_CPPFLAGS            = ${regular_CPPFLAGS}
AM_CFLAGS              = $(regular_CFLAGS) $(libfuse_CFLAGS)

man_MANS = posixovl.1

sbin_PROGRAMS          = mount.posixovl
EXTRA_PROGRAMS         = socket lntest
mount_posixovl_SOURCES = posixovl.c
mount_posixovl_LDADD   = $(libfuse_LIBS)

.PHONY: tarball
tarball:
	rm -Rf /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION};
	pushd ${top_srcdir} && git archive --prefix=${PACKAGE_TARNAME}-${PACKAGE_VERSION}/ HEAD | tar -C /tmp -x && popd
	pushd /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION} && ./autogen.sh && popd;
	tar -C /tmp --use=xz -cf ${PACKAGE_TARNAME}-${PACKAGE_VERSION}.tar.xz --owner=root --group=root ${PACKAGE_TARNAME}-${PACKAGE_VERSION}/
	rm -Rf /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION};