mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-12 19:18:44 +02:00
fb3d46da69
Originally committed as revision 4838 to svn://svn.ffmpeg.org/ffmpeg/trunk
79 lines
1.8 KiB
Makefile
79 lines
1.8 KiB
Makefile
#FIXME: This Makefile differs from all the others for no good reason...
|
|
|
|
include ../../config.mak
|
|
|
|
VPATH=$(SRC_PATH)/libavcodec/libpostproc
|
|
|
|
ifeq ($(SHARED_PP),yes)
|
|
SPPLIBNAME = $(SLIBPREF)postproc$(SLIBSUF)
|
|
SPPLIBMAJOR = $(SPPLIBNAME).$(SPPMAJOR)
|
|
SPPLIB = $(SPPLIBNAME).$(SPPVERSION)
|
|
LIBVERSION = $(SPPLIB)
|
|
SLIBNAME = $(SLIBPREF)postproc$(SLIBSUF)
|
|
endif
|
|
PPLIB = $(LIBPREF)postproc$(LIBSUF)
|
|
|
|
PPOBJS=postprocess.o
|
|
SPPOBJS=postprocess_pic.o
|
|
|
|
CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. $(EXTRA_INC)
|
|
# -I/usr/X11R6/include/
|
|
|
|
.SUFFIXES: .c .o
|
|
|
|
# .PHONY: all clean
|
|
|
|
.c.o:
|
|
$(CC) -c $(CFLAGS) $(LIBOBJFLAGS) -I$(SRC_PATH)/libavcodec -I../.. -o $@ $<
|
|
|
|
all: $(SWSLIB) $(PPLIB) $(SPPLIBNAME)
|
|
|
|
clean:
|
|
rm -f *.o *.a *~ *$(SLIBSUF) $(PPLIB) $(SPPLIBNAME)
|
|
|
|
distclean:
|
|
rm -f Makefile.bak *.o *.a *~ *$(SLIBSUF) .depend
|
|
|
|
dep: depend
|
|
|
|
depend:
|
|
$(CC) -MM $(CFLAGS) postprocess.c 1>.depend
|
|
|
|
ifeq ($(SHARED_PP),yes)
|
|
postprocess_pic.o: postprocess.c
|
|
$(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -I.. -I../.. -o $@ $<
|
|
|
|
$(SPPLIBNAME): $(SPPOBJS)
|
|
$(CC) $(SHFLAGS) -o $(SPPLIBNAME) $(SPPOBJS)
|
|
endif
|
|
|
|
$(PPLIB): $(PPOBJS)
|
|
rm -f $@
|
|
$(AR) rc $@ $(PPOBJS)
|
|
$(RANLIB) $@
|
|
|
|
install: all
|
|
ifeq ($(SHARED_PP),yes)
|
|
ifeq ($(CONFIG_WIN32),yes)
|
|
install $(INSTALLSTRIP) -m 755 $(SPPLIBNAME) "$(prefix)"
|
|
else
|
|
install -d $(libdir)
|
|
install $(INSTALLSTRIP) -m 755 $(SPPLIBNAME) $(libdir)/$(SPPLIB)
|
|
ln -sf $(SPPLIB) $(libdir)/$(SPPLIBNAME)
|
|
ln -sf $(SPPLIB) $(libdir)/$(SPPLIBMAJOR)
|
|
install -d $(libdir)/pkgconfig
|
|
install -m 644 ../../libpostproc.pc $(libdir)/pkgconfig
|
|
$(LDCONFIG) || true
|
|
endif
|
|
endif
|
|
mkdir -p $(prefix)/include/postproc
|
|
install -m 644 $(SRC_PATH)/libavcodec/libpostproc/postprocess.h $(prefix)/include/postproc/postprocess.h
|
|
|
|
|
|
#
|
|
# include dependency files if they exist
|
|
#
|
|
ifneq ($(wildcard .depend),)
|
|
include .depend
|
|
endif
|