~ubuntu-branches/ubuntu/karmic/ucarp/karmic

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Eric Evans
  • Date: 2004-12-24 12:39:30 UTC
  • Revision ID: james.westby@ubuntu.com-20041224123930-9qnzcd6o5j0jjjvm
Tags: 1.1-2
Patched to correct a bug that caused upscript to also be applied
when state changed to BACKUP, if --dowscript was passed before
--upscript, (Closes: #284891). Thanks Michail Bachmann
<michail.bachmann@cms.hu-berlin.de>

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
localedir = $(datadir)/locale
 
2
 
 
3
INCLUDES = -DLOCALEDIR=\"$(localedir)\"
 
4
 
1
5
sbin_PROGRAMS = \
2
6
        ucarp
3
7
 
4
8
ucarp_SOURCES = \
 
9
        gettext.h \
5
10
        ucarp.c \
6
11
        ucarp.h \
7
12
        carp.c \
23
28
        fakesnprintf.c \
24
29
        fakesnprintf.h \
25
30
        mysnprintf.c \
26
 
        mysnprintf.h
 
31
        mysnprintf.h \
 
32
        log.c \
 
33
        log.h \
 
34
        daemonize.c \
 
35
        daemonize.h \
 
36
        syslognames.h
 
37
 
 
38
ucarp_LDADD = \
 
39
        $(LTLIBINTL)
 
40