You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

74 lines
1.6 KiB

REDIS=yes
LIBREDISDIR= libhiredis-v0.10.0-3-gdf203bc
CC= gcc
CFLAGS= -g -Wall `pkg-config --cflags glib-2.0` `pcre-config --cflags` -fno-strict-aliasing
CFLAGS+= -I/lib/modules/`uname -r`/build/include/ -I../kernel-module/
CFLAGS+= -D_GNU_SOURCE
CFLAGS+= -O2
ifeq ($(REDIS),yes)
CFLAGS+= -I$(LIBREDISDIR)
else
CFLAGS+= -DNO_REDIS=1
endif
ifeq ($(DBG),yes)
CFLAGS+= -D__DEBUG=1
endif
LDFLAGS= `pkg-config --libs glib-2.0` `pcre-config --libs`
ifeq ($(REDIS),yes)
LDFLAGS+= -L$(LIBREDISDIR) -lhiredis -luuid
endif
SRCS= main.c kernel.c poller.c aux.c control.c streambuf.c call.c control_udp.c
ifeq ($(REDIS),yes)
SRCS+= redis.c
endif
OBJS= $(SRCS:.c=.o)
.PHONY: all dep clean tests no-redis debug
all:
ifeq ($(REDIS),yes)
$(MAKE) -C $(LIBREDISDIR) static
endif
$(MAKE) mediaproxy-ng
no-redis:
$(MAKE) REDIS=no all
debug:
$(MAKE) DBG=yes all
tests:
$(MAKE) aux-test poller-test
dep: .depend
clean:
rm -f $(OBJS) mediaproxy-ng aux-test poller-test aux-test.o poller-test.o .depend build_time.h core
$(MAKE) -C $(LIBREDISDIR) clean
.depend: $(SRCS) Makefile build_time.h
$(CC) $(CFLAGS) -M $(SRCS) | sed -e 's/:/ .depend:/' > .depend
build_time.h: $(SRCS) Makefile
date +"#define BUILD_TIME \"%Y-%m-%d %H:%M:%S\"" > build_time.h
mediaproxy-ng: $(OBJS) .depend build_time.h
$(CC) $(CFLAGS) -o $@ $(OBJS) $(LDFLAGS)
aux-test: aux.o aux-test.o .depend build_time.h
$(CC) $(CFLAGS) -o $@ aux-test.o aux.o $(LDFLAGS)
poller-test: poller.o poller-test.o aux.o .depend build_time.h
$(CC) $(CFLAGS) -o $@ poller-test.o poller.o aux.o $(LDFLAGS)
include .depend