ports/multimedia/exportvideo/files/patch-rtjpeg_Makefile
Pav Lucistnik 3c844061b7 Add exportvideo, an utility extracts the video data from a nuppelvideo
file and writes a YUV4MPEG stream which can be piped to mpeg2enc.
In other words, it exports the nuppelvideo .nuv format for encoding
(S)VCD/DVD compliant MPEGs with mjpegtools.

PR:		ports/73417
Submitted by:	Frank W. Josellis <frank@dynamical-systems.org>
2004-11-06 20:17:06 +00:00

24 lines
751 B
Text

--- rtjpeg/Makefile.orig Thu Jun 21 23:28:03 2001
+++ rtjpeg/Makefile Mon Nov 1 09:41:06 2004
@@ -1,5 +1,5 @@
CC=gcc
-CFLAGS= -g -Wall -O3 -mcpu=pentium -march=pentium -funroll-loops -fexpensive-optimizations -finline
+#CFLAGS= -g -Wall -O3 -mcpu=pentium -march=pentium -funroll-loops -fexpensive-optimizations -finline
V4LDIR=/usr/src/linux/drivers/char/
COPTS=$(CFLAGS) -I$(V4LDIR)
@@ -8,12 +8,12 @@
all: RTjpeg.o minilzo.o
RTjpeg.o:
- $(CC) -c $(COPTS) -fPIC RTjpeg.c
+ $(CC) -c $(CFLAGS) -fPIC RTjpeg.c
# $(CC) -c $(COPTSRT) -fPIC RTjpeg.c
minilzo.o: minilzo.c minilzo.h
- $(CC) $(COPTS) -fPIC -O3 -fexpensive-optimizations -funroll-loops -finline-functions -c minilzo.c
+ $(CC) $(CFLAGS) -fPIC -c minilzo.c
clean:
rm -f *.o