File: Makefile.am

package info (click to toggle)
fuse-umfuse-fat 0.1a-1.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 1,696 kB
  • ctags: 394
  • sloc: sh: 9,120; ansic: 3,747; makefile: 30
file content (41 lines) | stat: -rw-r--r-- 1,128 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
moddir = $(libdir)/umview/modules

DEVELFLAGS =

AM_CFLAGS = -ggdb $(GLIB2_CFLAGS)
AM_LDFLAGS = -module -avoid-version -export-dynamic
AM_LIBTOOLFLAGS = --tag=disable-static
AM_CPPFLAGS = -I$(includedir)/umview -DFATWRITE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE $(DEVELFLAGS)

bin_PROGRAMS = fusefat
mod_LTLIBRARIES = umfusefat.la

dist_man1_MANS = fusefat.1

COMMONSRC = fusefat.c \
	libfat.c libfat.h bits/libfat.h \
	unicode.h utf16be.c utf16le.c utf8.c \
	simple_fold.c \
	v2fuseutils.c v2fuseutils.h

fusefat_SOURCES = $(COMMONSRC)
fusefat_LDFLAGS = -lfuse -lpthread $(GLIB2_LIBS) $(FUSE_LIBS)
# Leave this also if it seems a no-op
fusefat_CFLAGS = $(AM_CFLAGS) $(FUSE_CFLAGS)

umfusefat_la_SOURCES = $(COMMONSRC)
umfusefat_la_LDFLAGS = $(AM_LDFLAGS) -lpthread $(GLIB2_LIBS)


install-data-hook:
	cd "$(DESTDIR)/$(moddir)" && rm -f $(mod_LTLIBRARIES)

extraclean: maintainer-clean
	rm -rf aclocal.m4 autom4te.cache autoscan.log configure.scan \
	config.h.in* configure depcomp install-sh Makefile.in \
	config.guess config.sub \
	ltmain.sh missing `find . -name Makefile.in` \
	fuse-umfuse-*.tar.gz \
	fuse-umfuse-*.tar.bz2