📄 makefile.proto
字号:
# Step 1:# Set CC to the C compiler you want to use. On Sun, gcc # produces faster code. Your mileage may vary.CC = gcc#CC = cc# Step 2:# Set INCLUDEDIR equal to -I followed by include directory# path for X11 include files. INCLUDEDIR = -I/usr/include -I/usr/include/X11# For Solaris/openwindows#INCLUDEDIR = -I/usr/include -I/usr/openwin/share/include -I/usr/openwin/include -I/usr/dt/include## Step 3:# Set CFLAGS. Below are def's for some machines. Uncomment the# appropriate one or make one of your own. If you want the player# to gather statistics about the video stream, add -DANALYSIS to# CFLAGS. If you do NOT want to use shared memory, remove # -DSH_MEM from CFLAGS.# Use -DSIG_ONE_PARAM if the function passed to signal takes # one parameter (linux, Solaris)# Do not use it if it takes none (SunOS, HPUX, Ultrix, OSF1, )# It works either way, (i think), just gets rid of a warning.## Use -NDEBUG for speed, -DDEBUG for resiliance. On invalid MPEG# streams a DEBUG compiled mpeg_play will exit gracefully, while# a NDEBUG one will dump core. But NDEBUG is faster.# Use -DQUIET to have mpeg_play print little by default (useful for# when it is called by another program like netscape).# Use -DQUALITY if you want the default to play streams that conform# strictly to the MPEG standard but take longer to display by defualt.# It is also available as -quality on at runtime# Use -DFLOATDCT to enable using the computationally expensive but# accurate floating point DCT through the -quality parameter.# Use -DDEFAULT_ORDERED_DITHER to use ORDERED_DITHER instead of # ORDERED2_DITHER. On some machines (e.g., Intel Pentiums),# ORDERED_DITHER is much faster than ORDERED2_DITHER.# Use -DNOCONTROLS to totally disable the X user interface. See # also HDRS, OBJS, and SRCS below.# To compile as a library (especially reentrant library, see README.lib)# gccCFLAGS = -O3 -DNDEBUG -DNONANSI_INCLUDES -DSH_MEM $(INCLUDEDIR)#Sun Solaris/Openwindows #CFLAGS = -O3 -DNDEBUG -DBSD -DNONANSI_INCLUDES -DSH_MEM -DSIG_ONE_PARAM $(INCLUDEDIR)#Linux C Flags#CFLAGS = -O3 -fomit-frame-pointer -ffast-math -finline-functions -m486 -DNDEBUG -DNONANSI_INCLUDES -DSH_MEM -DSIG_ONE_PARAM $(INCLUDEDIR) -DDEFAULT_ORDERED_DITHER#HP C Flags #CFLAGS = -Ac +O3 -DSH_MEM -DNDEBUG $(INCLUDEDIR)#DEC C Flags (On some Alpha's you need -lbsd also)#CFLAGS = -O -DSH_MEM -DNDEBUG $(INCLUDEDIR)#RS6000 C Flags -- Most RS6000's do not support shared memory,# but we include it 'cuz it helps so much if you have it.# by the way, if you want to give us a version of libXext with them, feel free#CFLAGS = -O -DSH_MEM $(INCLUDEDIR)#SGI C Flags#CFLAGS = -O -cckr -DSH_MEM $(INCLUDEDIR)#MIPGS RISC/os 4.5{1,2} C Flags#CFLAGS = -O -systype sysv -DSH_MEM -DNONANSI_INCLUDES -DMIPS#PTX Flags (Dynix)#CFLAGS = -O -DNDEBUG $(INCLUDEDIR)#NEWS C Flags#CFLAGS = -O2 -DSh_MEM -DNO_LRAND48 -DNDEBUG -DNONANSI_INCUDES $(INCLUDEDIR)##NeXT C Flags#CFLAGS = -O -DNO_LRAND48 -DNDEBUG $(INCLUDEDIR)#CETIA Unigraph/X C Flags#CFLAGS = -O -DNDEBUGS -DBSDCOMPAT -DBSD_LARGE -DCETIA -DX_NOT_STDC_ENV $(INCLUDEDIR) # Convex 3820 (ConvexOS)#CFLAGS = -O3 -DNDEBUG -DNONANSI_INCLUDES $(INCLUDEDIR) -DNO_LRAND48## Step 4:# Set LIBS equal to path of libXext.a and libX11.a or the loader# flag equivalents (i.e. -lXext -lX11).# If you are NOT using shared memory, libXext.a is unecessary.# NOTE: below the default definition are# a few definitions for specific architectures.LIBS = -L/usr/lib/X11 -lXext -lX11# LIBS for MIPS RISC/os 4.5{1,2}#LIBS = -systype sysv -lXext -lX11 -lbsd# LIBS for PTX/Dynix#LIBS = -lXext -lX11 -lsocket -linet -lnsl -lseq# LIBS for CETIA Unigraph/X#LIBS = -lX11 -lbsd# LIBS for Solaris/Openwindows (some also need -lucb)#LIBS = -lXext -lX11 -lsocket -lnsl -lw -ldl -lelf# LIBS for SunOS 4.1.3/Openwindows#LIBS = -lXext -lX11 -lnsl -ldl# Some versions of Linux need this#LIBS = -L/usr/X11/lib -L/usr/lib/X11 -lXext -lX11## Step 5:# Set DEST to pathname of final destination of player...#DEST = ~/bin## Step 6 (System Dependant Stuff):# On SOLARIS a user reports:# Some systems are missing regcmp, to fix# add -lgen to CFLAGS# Also, uncomment the special SOLARIS INSTALL and LDFLAGS parameters.## That's it! The rest of this shouldn't need any modifications...#EXTHDRS =HDRS = util.h video.h decoders.h fs2.h dither.h fs4.h ctrlbar.hINSTALL = /etc/install#Solaris INSTALL#INSTALL = /usr/sbin/installLD = $(CC)LDFLAGS =#Solaris LDFLAGS#LDFLAGS = -R/usr/openwin/lib:/usr/dt/lib -L/usr/openwin/lib -L/usr/dt/libMAKEFILE = MakefileOBJS = util.o video.o parseblock.o motionvector.o decoders.o \ fs2.o fs2fast.o fs4.o hybrid.o hybriderr.o 2x2.o floatdct.o\ gdith.o gray.o mono.o main.o jrevdct.o 16bit.o util32.o\ ordered.o ordered2.o mb_ordered.o readfile.o ctrlbar.oPRINT = prPROGRAM = mpeg_playSHELL = /bin/shSRCS = util.c video.c parseblock.c motionvector.c decoders.c \ main.c gdith.c fs2.c fs2fast.c fs4.c hybrid.c hybriderr.c \ 2x2.c gray.c mono.c jrevdct.c 16bit.c util32.c ordered.c \ ordered2.c mb_ordered.c readfile.c floatdct.c ctrlbar.cSYSHDRS = all: $(PROGRAM)$(PROGRAM): $(OBJS) $(LD) $(LDFLAGS) $(OBJS) $(LIBS) -lm -o $(PROGRAM) strip $(PROGRAM)clean:; rm -f $(OBJS) core @make dependclobber:; rm -f $(OBJS) $(PROGRAM) core tagsdepend:; makedepend -- $(CFLAGS) -- $(SRCS)echo:; @echo $(HDRS) $(SRCS)index:; @ctags -wx $(HDRS) $(SRCS)install: $(PROGRAM) @echo Installing $(PROGRAM) in $(DEST) @-strip $(PROGRAM) @if [ $(DEST) != . ]; then \ (rm -f $(DEST)/$(PROGRAM); $(INSTALL) -f $(DEST) $(PROGRAM)); fiprint:; @$(PRINT) $(HDRS) $(SRCS)tags: $(HDRS) $(SRCS); @ctags $(HDRS) $(SRCS)update: $(DEST)/$(PROGRAM)# DO NOT DELETE THIS LINE -- make depend depends on it.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -