File: Makefile.am

package info (click to toggle)
fswatch 1.14.0%2Brepack-13
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,460 kB
  • sloc: cpp: 4,557; makefile: 184; sed: 16
file content (29 lines) | stat: -rw-r--r-- 1,174 bytes parent folder | download | duplicates (3)
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
#
# Copyright (c) 2014-2015 Enrico M. Crisostomo
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 3, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program.  If not, see <http://www.gnu.org/licenses/>.
#
AUTOMAKE_OPTIONS = std-options
bin_PROGRAMS = fswatch
fswatch_SOURCES  = fswatch.hpp fswatch.cpp
fswatch_SOURCES += gettext.h

# Set include path for libfswatch
AM_CPPFLAGS  = -I$(top_srcdir)/libfswatch/src
# Prepare gettext-related symbols used by programs
AM_CPPFLAGS += -DLOCALEDIR=\"$(localedir)\"

# Link fswatch against dependent libraries
fswatch_LDADD  = $(top_builddir)/libfswatch/src/libfswatch/libfswatch.la
# Link fswatch against libintl if gettext is being used
fswatch_LDADD += @LTLIBINTL@