start web server from beginnig
[vsorcdistro/.git] / ryu / ryu / tests / packet_data_generator2 / Makefile.GNU
1 # Copyright (C) 2015 Nippon Telegraph and Telephone Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #    http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12 # implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 # OVS_SRC: openvswitch source directory
17 # OVS_INC: openvswitch include directory
18 # OVS_LIB: openvswitch library directory
19
20 OVS_SRC=${HOME}/ovs
21 OVS_INC=/usr/local/include/openvswitch
22 OVS_LIB=/usr/local/lib
23
24 CPPFLAGS=-std=gnu99 -I${OVS_SRC} -I${OVS_INC}
25 LDFLAGS=-L${OVS_LIB} -Wl,-R${OVS_LIB} -lofproto -lopenvswitch -lpthread -lssl -lrt -lm -lcrypto
26
27 PROG=gen
28 NOMAN=
29
30 all: generate
31
32 gen: gen.c
33         ${CC} $^ ${CPPFLAGS} ${LDFLAGS} -o $@
34
35 generate: ${PROG}
36         ./${PROG}
37
38 clean:
39         rm ${PROG}