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.
sems/apps/rtmp/Makefile

32 lines
588 B

plug_in_name = rtmp
module_cflags = -DNO_CRYPTO
module_ldflags = -lspeex
module_extra_objs = librtmp/librtmp.a
extra_target = sono
extra_clean = clean_sono clean_librtmp
COREPATH ?=../../core
include $(COREPATH)/plug-in/Makefile.app_module
#CXXFLAGS=-g -I/opt/local/include -DNO_CRYPTO
#LDFLAGS=-lstdc++ -g -L/opt/local/lib -lspeex -lpthread
.PHONY: librtmp/librtmp.a
librtmp/librtmp.a:
cd librtmp; $(MAKE)
.PHONY: sono
sono:
cd flash_phone; $(MAKE)
.PHONY: clean_sono
clean_sono:
cd flash_phone; $(MAKE) clean
.PHONY: clean_librtmp
clean_librtmp:
cd librtmp; $(MAKE) clean