mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
76a448ed4f
Install each library's headers in $prefix/include/$libname. The installed headers use #include "lib*/*.h"; applications are expected to do the same. Specify only $prefix/include in .pc files. Originally committed as revision 12194 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 lines
227 B
Makefile
15 lines
227 B
Makefile
|
|
include ../config.mak
|
|
|
|
EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
|
|
|
|
NAME=postproc
|
|
LIBVERSION=$(SPPVERSION)
|
|
LIBMAJOR=$(SPPMAJOR)
|
|
|
|
HEADERS = postprocess.h
|
|
|
|
OBJS = postprocess.o
|
|
|
|
include ../common.mak
|