blob: 6cbd59c4422b478f9b911362d17cabe9521225f1 [file] [log] [blame]
Harald Weltef7365592020-04-15 21:48:45 +02001LIBS=-lpthread -lsctp $(shell pkg-config --libs libosmocore libosmovty libosmo-netif jansson libnl-route-3.0)
2INC=$(shell pkg-config --cflags libosmocore libosmovty libosmo-netif jansson libnl-route-3.0)
3VER=$(shell git describe --tags)
4CFLAGS=-Wall -g -DPACKAGE_VERSION='"$(VER)"' $(INC)
5
6all: osmo-uecups-daemon
7
8%.o: %.c
9 $(CC) $(CFLAGS) -o $@ -c $^
10
11osmo-uecups-daemon: utility.o netdev.o netns.o tun_device.o \
12 gtp_endpoint.o gtp_tunnel.o daemon_vty.o main.o
13 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
14
15clean:
16 @rm -f *.o osmo-uecups-daemon