mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 23:20:30 -04:00
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>
24 lines
751 B
Text
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
|