~ubuntu-branches/ubuntu/saucy/libnl3/saucy

« back to all changes in this revision

Viewing changes to lib/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Heiko Stuebner
  • Date: 2012-06-30 15:54:25 UTC
  • mfrom: (3.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20120630155425-6wx9v9q70vry53vg
Tags: 3.2.7-4
* Add watch file (Closes: #679473)
* Use dh-autoreconf to update the build system (Closes: 679474)

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
        -I${builddir}/route \
8
8
        -I${builddir}/route/cls \
9
9
        -D_GNU_SOURCE \
10
 
        -DSYSCONFDIR=\"$(sysconfdir)/libnl\"
 
10
        -DSYSCONFDIR=\"$(sysconfdir)/libnl-3\"
11
11
 
12
12
AM_LDFLAGS = \
13
13
        -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
39
39
# Hack to avoid using ylwrap. It does not function correctly in combination
40
40
# with --header-file=
41
41
route/pktloc_grammar.c: route/pktloc_grammar.l
 
42
        $(AM_V_GEN) install -d route/
42
43
        $(AM_V_GEN) $(LEX) --header-file=route/pktloc_grammar.h $(LFLAGS) -o $@ $^
43
44
 
44
45
route/pktloc_syntax.c: route/pktloc_syntax.y
 
46
        $(AM_V_GEN) install -d route/
45
47
        $(AM_V_GEN) $(YACC) -d $(YFLAGS) -o $@ $^
46
48
 
47
49
route/cls/ematch_grammar.c: route/cls/ematch_grammar.l
 
50
        $(AM_V_GEN) install -d route/cls/
48
51
        $(AM_V_GEN) $(LEX) --header-file=route/cls/ematch_grammar.h $(LFLAGS) -o $@ $^
49
52
 
50
53
route/cls/ematch_syntax.c: route/cls/ematch_syntax.y
 
54
        $(AM_V_GEN) install -d route/cls/
51
55
        $(AM_V_GEN) $(YACC) -d $(YFLAGS) -o $@ $^
52
56
 
53
57
libnl_route_3_la_LIBADD  = libnl-3.la
105
109
        cli/cls/basic.la \
106
110
        cli/cls/cgroup.la
107
111
 
108
 
cli_qdisc_htb_la_LDFLAGS = -module -version-info 0:0:0
109
 
cli_qdisc_blackhole_la_LDFLAGS = -module -version-info 0:0:0
110
 
cli_qdisc_pfifo_la_LDFLAGS = -module -version-info 0:0:0
111
 
cli_qdisc_bfifo_la_LDFLAGS = -module -version-info 0:0:0
112
 
cli_cls_basic_la_LDFLAGS = -module -version-info 0:0:0
113
 
cli_cls_cgroup_la_LDFLAGS = -module -version-info 0:0:0
 
112
cli_qdisc_htb_la_LDFLAGS = -module -avoid-version
 
113
cli_qdisc_blackhole_la_LDFLAGS = -module -avoid-version
 
114
cli_qdisc_pfifo_la_LDFLAGS = -module -avoid-version
 
115
cli_qdisc_bfifo_la_LDFLAGS = -module -avoid-version
 
116
cli_cls_basic_la_LDFLAGS = -module -avoid-version
 
117
cli_cls_cgroup_la_LDFLAGS = -module -avoid-version
114
118
endif