⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.sgi

📁 ac3的解码程序
💻 SGI
字号:
## $HEADER: # By: Alex Theo de Jong, NIST# Description:# Makefile for MPEG 2 Audio player## Operating SystemOS        = -DIRIX # -DIRIX_PTHREAD# Use Mutli-Processing on IrixTHREADLIB = # -L/opt/pthread/lib/libpthread.aTHREADINC = # -I/opt/pthread/includePIDRDIR      = .INSTLIB      = ../../../LibINSTINC      = ../../../IncINSTBIN      = ../../../Bin/Irix# ToolsCP           = cpRM           = rm -fCHMOD        = chmod 666AR           = arCPP          = CC # g++ -V2.6.3STRP         = /bin/strip# Compiler optionsDEBUG        = -DTRACE -DDEBUG # -Wall  -ggdb  OPTIMIZE     = # -O2 # -O6 #EXTERNAL     = # -fexternal-templatesCPPFLAGS     = $(VERSION) $(OS) $(DEBUG) $(OPTIMIZE) \               $(EXTERNAL) -I$(PIDRDIR) -I$(INSTINC) $(THREADINC)# Linker flagsLDFLAGS      = -L$(INSTLIB)LDLIBS       = -lmpeg -lutil -laudio $(THREADLIB)# Things to compilePROGRAM      = mpeg2audioOBJECTS      = mpeg2audio.o astream.o header.o scalefactors.o subband_layer_1.o \               subband_layer_2.o synthesis_filter.o obuffer.o crc.oLIBRARY      = libmpeg.a# compile linesall: $(PROGRAM)install: $(PROGRAM) binclean:	$(RM) *.o *~ *.~?~ core $(PROGRAM)installclean: clean%.a: $(OBJECTS)	$(AR) vrus $(INSTLIB)/$*.a $(OBJECTS)	$(CP) *.hh $(INSTINC)	$(CHMOD) $(INSTINC)/*.hh test: test.o $(LIBRARY)	$(RM) test	$(CPP) -o test test.o $(LDFLAGS) $(LDLIBS)mpeg2audio: $(LIBRARY) main.o	$(RM) $(PROGRAM)	$(CPP) -o $(PROGRAM) main.o $(LDFLAGS) $(LDLIBS)bin:	$(CP) $(PROGRAM) $(INSTBIN)	$(STRP) $(INSTBIN)/$(PROGRAM).cc.o:	$(RM) $@	$(CPP) $(CPPFLAGS) -c $<# Dependenciescrc.o: crc.hh header.o: astream.hh header.hh crc.hhobuffer.o: obuffer.hh header.hh crc.hhscalefactors.o: scalefactors.hh subband_layer_1.o: subband_layer_1.hh astream.hh subband_layer_1.o: subband.hh  header.hh crc.hh synthesis_filter.hh  obuffer.hhsubband_layer_1.o: scalefactors.hhsubband_layer_2.o: subband_layer_2.hh astream.hh subband.hh  header.hh crc.hhsubband_layer_2.o: synthesis_filter.hh obuffer.hh scalefactors.hhsynthesis_filter.o: synthesis_filter.hh obuffer.hh header.hh crc.hhastream.o: astream.hhmpeg2audio.o: mpeg2audio.hh

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -