diff libpostproc/Makefile @ 3046:1127b4455bec libavcodec

Remove redundant --enable-shared-pp configure option and make the PP code use the standard --enable-shared option.
author diego
date Sat, 14 Jan 2006 18:07:36 +0000
parents ed98beb48872
children 986716310195
line wrap: on
line diff
--- a/libpostproc/Makefile	Sat Jan 14 17:43:22 2006 +0000
+++ b/libpostproc/Makefile	Sat Jan 14 18:07:36 2006 +0000
@@ -4,7 +4,7 @@
 VPATH=$(SRC_PATH)/libavcodec/libpostproc
 
 NAME=postproc
-ifeq ($(SHARED_PP),yes)
+ifeq ($(BUILD_SHARED),yes)
 LIBVERSION=$(SPPVERSION)
 LIBMAJOR=$(SPPMAJOR)
 endif
@@ -35,7 +35,7 @@
 depend:
 	$(CC) -MM $(CFLAGS) postprocess.c 1>.depend
 
-ifeq ($(SHARED_PP),yes)
+ifeq ($(BUILD_SHARED),yes)
 postprocess_pic.o: postprocess.c
 	$(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -I.. -I../.. -o $@ $<
 
@@ -49,7 +49,7 @@
 	$(RANLIB) $@
 
 install: all
-ifeq ($(SHARED_PP),yes)
+ifeq ($(BUILD_SHARED),yes)
 ifeq ($(CONFIG_WIN32),yes)
 	install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
 else