~ubuntu-branches/ubuntu/gutsy/syslog-ng/gutsy-security

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Magosányi Árpád (mag)
  • Date: 2004-03-13 18:35:37 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040313183537-g0fsc2j2y1wbxage
Tags: 1.6.2-3
* changed manpage to better reflect -v. Closes: #228377
* fixed build-depends, hopefully correctly now:( Closes: #237668

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## Run automake to produce Makefile.in
2
 
## $Id: Makefile.am,v 1.45 2001/07/08 17:04:21 bazsi Exp $
 
2
## $Id: Makefile.am,v 1.48 2003/04/10 16:40:00 bazsi Exp $
3
3
 
4
4
YFLAGS = @YFLAGS@
5
5
MAKE_CLASS = @MAKE_CLASS@
23
23
        afremctrl.h \
24
24
        utils.h \
25
25
        syslog-names.h \
26
 
        nscache.h
 
26
        nscache.h \
 
27
        macros.h
27
28
 
28
29
dist_x_files = \
29
30
        cfgfile.h.x \
71
72
        afremctrl.c \
72
73
        nscache.c \
73
74
        utils.c \
74
 
        syslog-names.c
 
75
        syslog-names.c \
 
76
        macros.c
75
77
 
76
78
syslog_ng_LDADD = @LIBOBJS@
77
79
 
78
80
EXTRA_DIST = $(dist_x_files) $(dist_h_files) \
79
81
        getopt.c getopt.h getopt1.c strcasecmp.c \
80
 
        cfg-grammar.h snprintf.c strptime.c strptime.h
 
82
        cfg-grammar.h snprintf.c strptime.c strptime.h \
 
83
        macros-gperf.c macros.gprf
81
84
 
82
85
cfg-lex.l: cfg-grammar.h
83
86
 
87
90
%.x: %
88
91
        $(MAKE_CLASS) <$< >$@T
89
92
        if [ -s $@T ]; then mv $@T $@; else rm $@T; fi
 
93
 
 
94
macros-gperf.c: macros.gprf
 
95
        gperf -LANSI-C -t -c -l -k1,3,5  -N find_macro < macros.gprf >macros-gperf.c
 
96
 
 
97
macros.c: macros-gperf.c