Blame view

trunk/research/librtmp/Makefile 5.3 KB
winlin authored
1 2
GCC = gcc
3 4 5
ifeq ($(HANDSHAKE),)
    ST_ALL      = help
else
6 7 8
    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 \
9
                objs/srs_bandwidth_check objs/srs_h264_raw_publish \
10
                objs/srs_audio_raw_publish objs/srs_aac_raw_publish
11 12
endif
13
.PHONY: default clean help ssl nossl
winlin authored
14
15
default: $(ST_ALL)
16 17

help:
winlin authored
18
	@echo "Usage: make <help>|<clean>|<ssl>|<nossl>"
19 20
	@echo "     help                    display this help"
	@echo "     clean                   cleanup build"
21 22
	@echo "     ssl                     all tools link ssl"
	@echo "     nossl                   all tools never link ssl"
winlin authored
23
	@echo "ssl/nossl will build the following tools:"
24
	@echo "     srs_flv_parser          parse flv file, print detail info."
25
	@echo "     srs_flv_injecter        inject keyframes information to metadata."
26
	@echo "     srs_publish             publish program using srs-librtmp"
27
	@echo "     srs_h264_raw_publish    publish raw h.264 stream to SSR by srs-librtmp"
28
	@echo "     srs_audio_raw_publish   publish raw audio stream to SSR by srs-librtmp"
29
	@echo "     srs_aac_raw_publish     publish raw aac stream to SSR by srs-librtmp"
30 31 32
	@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
33
	@echo "     srs_detect_rtmp         detect RTMP stream info."
34
	@echo "     srs_bandwidth_check     bandwidth check/test tool."
35 36 37 38
	@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'"
39
	@echo "     see: https://github.com/winlinvip/simple-rtmp-server/wiki/v1_CN_v1_Build"
40
	@echo "Remark: before make this sample, user must make the srs, with/without ssl"
winlin authored
41 42
    
clean:
winlin authored
43
	@rm -rf objs
44 45 46 47 48 49 50

# 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.
51
SRS_LIBSSL_L =
52 53
# public depends, the Makefile or public headers.
SRS_RESEARCH_DEPS = Makefile
54
55 56
# for x86/x64 platform
ifeq ($(GCC), gcc)
57
    EXTRA_CXX_FLAG = -g -O0 -ldl -lstdc++
winlin authored
58
endif
59
# for arm.
winlin authored
60
ifeq ($(GCC), arm-linux-gnueabi-gcc)
61
    EXTRA_CXX_FLAG = -g -O0 -ldl -static -lstdc++
62
endif
winlin authored
63 64 65 66
# 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
67 68 69 70
# for ssl or nossl
ifeq ($(HANDSHAKE), SSL)
    SRS_LIBSSL_L = $(SRS_OBJS)/openssl/lib/libssl.a $(SRS_OBJS)/openssl/lib/libcrypto.a
endif
71
72
ssl:
winlin authored
73
	@mkdir -p objs
74 75
	$(MAKE) HANDSHAKE="SSL"
nossl:
winlin authored
76
	@mkdir -p objs
77
	$(MAKE) HANDSHAKE="NOSSL"
78
winlin authored
79 80
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
81
winlin authored
82 83
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
84
winlin authored
85 86
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
87
88 89 90
objs/srs_h264_raw_publish: srs_h264_raw_publish.c $(SRS_RESEARCH_DEPS) $(SRS_LIBRTMP_I) $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L)
	$(GCC) srs_h264_raw_publish.c $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L) $(EXTRA_CXX_FLAG) -o objs/srs_h264_raw_publish
91 92 93
objs/srs_audio_raw_publish: srs_audio_raw_publish.c $(SRS_RESEARCH_DEPS) $(SRS_LIBRTMP_I) $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L)
	$(GCC) srs_audio_raw_publish.c $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L) $(EXTRA_CXX_FLAG) -o objs/srs_audio_raw_publish
94 95 96
objs/srs_aac_raw_publish: srs_aac_raw_publish.c $(SRS_RESEARCH_DEPS) $(SRS_LIBRTMP_I) $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L)
	$(GCC) srs_aac_raw_publish.c $(SRS_LIBRTMP_L) $(SRS_LIBSSL_L) $(EXTRA_CXX_FLAG) -o objs/srs_aac_raw_publish
winlin authored
97 98
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
99
winlin authored
100 101
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
102
winlin authored
103 104
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
105
winlin authored
106 107
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
108 109 110

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