~ubuntu-branches/ubuntu/saucy/fuse-umfuse-ext2/saucy-proposed

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Guido Trotter
  • Date: 2007-02-14 01:49:23 UTC
  • Revision ID: james.westby@ubuntu.com-20070214014923-03tlosdz6hbmot8n
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
moddir = $(libdir)/umview/modules
 
2
 
 
3
DEVELFLAGS =
 
4
 
 
5
AM_CFLAGS = -ggdb
 
6
AM_LDFLAGS = -module -avoid-version -export-dynamic
 
7
AM_LIBTOOLFLAGS = --tag=disable-static
 
8
AM_CPPFLAGS = -I$(includedir)/umview -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=26 -D_GNU_SOURCE $(DEVELFLAGS)
 
9
 
 
10
bin_PROGRAMS = fuseext2
 
11
mod_LTLIBRARIES = umfuseext2.la
 
12
 
 
13
fuseext2_SOURCES = fuseext2.c bindir.h
 
14
fuseext2_LDFLAGS = -lfuse -lext2fs
 
15
# Leave this also if it seems a no-op
 
16
fuseext2_CFLAGS = $(AM_CFLAGS)
 
17
 
 
18
umfuseext2_la_SOURCES = fuseext2.c bindir.h
 
19
umfuseext2_la_LDFLAGS = $(AM_LDFLAGS) -lumlib -lfuse -lext2fs
 
20
 
 
21
install-data-hook:
 
22
        cd "$(DESTDIR)/$(moddir)" && rm -f $(mod_LTLIBRARIES)
 
23
 
 
24
extraclean: maintainer-clean
 
25
        rm -rf aclocal.m4 autom4te.cache autoscan.log configure.scan \
 
26
        config.h.in* configure depcomp install-sh Makefile.in \
 
27
        config.guess config.sub \
 
28
        ltmain.sh missing `find . -name Makefile.in` \
 
29
        fuse-umfuse-*.tar.gz \
 
30
        fuse-umfuse-*.tar.bz2
 
31