Reorganize source tree to use single autotools instance
[vpp.git] / plugins / Makefile.am
1 # Copyright (c) 2016 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 AUTOMAKE_OPTIONS = foreign subdir-objects
15
16 # To add a new plugin subdirectory:
17 #
18 # add a stanza here:
19 # if ENABLE_new_PLUGIN
20 # SUBDIRS += new-plugin
21 # endif
22 #
23 # Also: add PLUGIN(new) to configure.ac
24
25 SUBDIRS =
26
27 if ENABLE_sample_PLUGIN
28 SUBDIRS += sample-plugin
29 endif
30
31 if ENABLE_ioam_PLUGIN
32 SUBDIRS += ioam-plugin
33 endif
34
35 if ENABLE_vcgn_PLUGIN
36 SUBDIRS += vcgn-plugin
37 endif
38
39 if ENABLE_snat_PLUGIN
40 SUBDIRS += snat-plugin
41 endif
42
43 if ENABLE_lb_PLUGIN
44 SUBDIRS += lb-plugin
45 endif
46
47 if ENABLE_acl_PLUGIN
48 SUBDIRS += acl-plugin
49 endif