📄 makefile
字号:
# Delete the following line if you are not using a # "NEWSTRUCT" driver. If you are using a "NEWSTRUCT"# driver, it must be later than October 10th 2002NEWSTRUCT=1CC=gccCFLAGS = -g -Wall -O2 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCEOBJS=dvbstream dumprtp ts_filter rtpfeed rtp.o ifdef NEWSTRUCT CFLAGS += -DNEWSTRUCT INCS=-I ../DVB/includeelse INCS=-I ../DVB/ost/includeendififdef UK CFLAGS += -DUKendififdef FINLAND CFLAGS += -DFINLANDendififdef FINLAND2 CFLAGS += -DFINLAND2endifall: $(OBJS)dvbstream: dvbstream.c rtp.o tune.o mpegtools/ctools.o mpegtools/remux.o mpegtools/transform.o mpegtools/ringbuffy.o $(CC) $(INCS) $(CFLAGS) -o dvbstream dvbstream.c rtp.o tune.o mpegtools/ctools.o mpegtools/remux.o mpegtools/transform.o mpegtools/ringbuffy.odumprtp: dumprtp.c rtp.o $(CC) $(INCS) $(CFLAGS) -o dumprtp dumprtp.c rtp.ortpfeed: rtpfeed.c rtp.o $(CC) $(INCS) $(CFLAGS) -o rtpfeed rtpfeed.c rtp.ortp.o: rtp.c rtp.h $(CC) $(INCS) $(CFLAGS) -c -o rtp.o rtp.ctune.o: tune.c tune.h dvb_defaults.h $(CC) $(INCS) $(CFLAGS) -c -o tune.o tune.cts_filter: ts_filter.c $(CC) $(INCS) $(CFLAGS) -o ts_filter ts_filter.cclean: rm -f *.o mpegtools/*.o *~ $(OBJS)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -