Blame view

trunk/research/librtmp/Makefile 4.3 KB
winlin authored
1 2
GCC = gcc
3 4 5
ifeq ($(HANDSHAKE),)
    ST_ALL      = help
else
6 7 8 9
    ST_ALL      = objs/srs_flv_parser \
                objs/srs_flv_injecter objs/srs_publish objs/srs_play \
                objs/srs_ingest_flv objs/srs_ingest_rtmp objs/srs_detect_rtmp \
                objs/srs_bandwidth_check
10 11
endif
12
.PHONY: default clean help ssl nossl
winlin authored
13
14
default: $(ST_ALL)
15 16

help:
winlin authored
17
	@echo "Usage: make <help>|<clean>|<ssl>|<nossl>"
18 19
	@echo "     help                    display this help"
	@echo "     clean                   cleanup build"
20 21
	@echo "     ssl                     all tools link ssl"
	@echo "     nossl                   all tools never link ssl"
winlin authored
22
	@echo "ssl/nossl will build the following tools:"
23
	@echo "     srs_flv_parser          parse flv file, print detail info."
24
	@echo "     srs_flv_injecter        inject keyframes information to metadata."
25 26 27 28
	@echo "     srs_publish             publish program using srs-librtmp"
	@echo "     srs_play                play program using srs-librtmp"
	@echo "     srs_ingest_flv          ingest flv file and publish to RTMP server."
	@echo "     srs_ingest_rtmp         ingest RTMP and publish to RTMP server."
winlin authored
29
	@echo "     srs_detect_rtmp         detect RTMP stream info."
30
	@echo "     srs_bandwidth_check     bandwidth check/test tool."
31 32 33 34 35 36
	@echo "Remark: about simple/complex handshake, see: http://blog.csdn.net/win_lin/article/details/13006803"
	@echo "Remark: srs Makefile will auto invoke this by --with/without-ssl, "
	@echo "     that is, if user specified ssl(by --with-ssl), srs will make this by 'make ssl'"
	@echo "     that is, if user not use ssl(by --without-ssl), use 'make nossl'"
	@echo "     see: https://github.com/winlinvip/simple-rtmp-server/wiki/Build"
	@echo "Remark: before make this sample, user must make the srs, with/without ssl"
winlin authored
37 38
    
clean:
winlin authored
39
	@rm -rf objs
40 41 42 43 44 45 46

# srs library root
SRS_OBJS = ../../objs
# srs-librtmp for publish/play, built by srs.
SRS_LIBRTMP_I = $(SRS_OBJS)/include/srs_librtmp.h
SRS_LIBRTMP_L = $(SRS_OBJS)/lib/srs_librtmp.a
# openssl for complex handshake, built by srs.
47
SRS_LIBSSL_L =
48 49
# the research public headers
SRS_RESEARCH_DEPS = Makefile srs_research_public.h
50
51 52
# for x86/x64 platform
ifeq ($(GCC), gcc)
53
    EXTRA_CXX_FLAG = -g -O0 -ldl -lstdc++
winlin authored
54
endif
55
# for arm.
winlin authored
56
ifeq ($(GCC), arm-linux-gnueabi-gcc)
57
    EXTRA_CXX_FLAG = -g -O0 -ldl -static -lstdc++
58
endif
winlin authored
59 60 61 62
# for mips, add -lgcc_eh, or stl compile failed.
ifeq ($(GCC), mipsel-openwrt-linux-gcc)
    EXTRA_CXX_FLAG = -g -O0 -ldl -lstdc++ -lgcc_eh
endif
63 64 65 66
# for ssl or nossl
ifeq ($(HANDSHAKE), SSL)
    SRS_LIBSSL_L = $(SRS_OBJS)/openssl/lib/libssl.a $(SRS_OBJS)/openssl/lib/libcrypto.a
endif
67
68
ssl:
winlin authored
69
	@mkdir -p objs
70 71
	$(MAKE) HANDSHAKE="SSL"
nossl:
winlin authored
72
	@mkdir -p objs
73
	$(MAKE) HANDSHAKE="NOSSL"
74
winlin authored
75 76
objs/srs_flv_parser: srs_flv_parser.c $(SRS_RESEARCH_DEPS) $(SRS_LIBRTMP_I) $(SRS_LIBRTMP_L)
	$(GCC) srs_flv_parser.c $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L) $(EXTRA_CXX_FLAG) -o objs/srs_flv_parser
77
winlin authored
78 79
objs/srs_flv_injecter: srs_flv_injecter.c $(SRS_RESEARCH_DEPS) $(SRS_LIBRTMP_I) $(SRS_LIBRTMP_L)
	$(GCC) srs_flv_injecter.c $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L) $(EXTRA_CXX_FLAG) -o objs/srs_flv_injecter
80
winlin authored
81 82
objs/srs_publish: srs_publish.c $(SRS_RESEARCH_DEPS) $(SRS_LIBRTMP_I) $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L)
	$(GCC) srs_publish.c $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L) $(EXTRA_CXX_FLAG) -o objs/srs_publish
83
winlin authored
84 85
objs/srs_play: srs_play.c $(SRS_RESEARCH_DEPS) $(SRS_LIBRTMP_I) $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L)
	$(GCC) srs_play.c $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L) $(EXTRA_CXX_FLAG) -o objs/srs_play
86
winlin authored
87 88
objs/srs_ingest_flv: srs_ingest_flv.c $(SRS_RESEARCH_DEPS) $(SRS_LIBRTMP_I) $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L)
	$(GCC) srs_ingest_flv.c $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L) $(EXTRA_CXX_FLAG) -o objs/srs_ingest_flv
89
winlin authored
90 91
objs/srs_ingest_rtmp: srs_ingest_rtmp.c $(SRS_RESEARCH_DEPS) $(SRS_LIBRTMP_I) $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L)
	$(GCC) srs_ingest_rtmp.c $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L) $(EXTRA_CXX_FLAG) -o objs/srs_ingest_rtmp
winlin authored
92
winlin authored
93 94
objs/srs_detect_rtmp: srs_detect_rtmp.c $(SRS_RESEARCH_DEPS) $(SRS_LIBRTMP_I) $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L)
	$(GCC) srs_detect_rtmp.c $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L) $(EXTRA_CXX_FLAG) -o objs/srs_detect_rtmp
95 96 97

objs/srs_bandwidth_check: srs_bandwidth_check.c $(SRS_RESEARCH_DEPS) $(SRS_LIBRTMP_I) $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L)
	$(GCC) srs_bandwidth_check.c $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L) $(EXTRA_CXX_FLAG) -o objs/srs_bandwidth_check