You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-06 08:29:25 +02:00
Changes for SPARC/Solaris compatibility. Now it should be possible to
build and test ffmpeg on SPARC/Solaris 8+ out of the box. Originally committed as revision 1778 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
8
Makefile
8
Makefile
@@ -53,6 +53,12 @@ INSTALLVHOOK=install-vhook
|
||||
CLEANVHOOK=clean-vhook
|
||||
endif
|
||||
|
||||
ifeq ($(TARGET_OS), SunOS)
|
||||
TEST=/usr/bin/test
|
||||
else
|
||||
TEST=test
|
||||
endif
|
||||
|
||||
OBJS = ffmpeg.o ffserver.o
|
||||
SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
|
||||
FFLIBS = -L./libavformat -lavformat -L./libavcodec -lavcodec
|
||||
@@ -112,7 +118,7 @@ endif
|
||||
|
||||
.libs: lib
|
||||
@test -f .libs || touch .libs
|
||||
@for i in $(DEP_LIBS) ; do if test $$i -nt .libs ; then touch .libs; fi ; done
|
||||
@for i in $(DEP_LIBS) ; do if $(TEST) $$i -nt .libs ; then touch .libs; fi ; done
|
||||
|
||||
clean: $(CLEANVHOOK)
|
||||
$(MAKE) -C libavcodec clean
|
||||
|
||||
Reference in New Issue
Block a user