diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-02-11 21:13:30 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-02-11 21:13:30 +0000 |
commit | 9858f77376c9648c2fb3c16d54e9f0d0c97fdd7a (patch) | |
tree | a4d6442cea73ad7de9891a02eba7aed0fd2850dc /postproc/Makefile | |
parent | 6524b641c02550b24ba1ee87ab9a528af66d288d (diff) | |
download | ffmpeg-9858f77376c9648c2fb3c16d54e9f0d0c97fdd7a.tar.gz |
avoid #include "../
Originally committed as revision 9403 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/Makefile')
-rw-r--r-- | postproc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/postproc/Makefile b/postproc/Makefile index 36f87075bc..2ef7bbc8cf 100644 --- a/postproc/Makefile +++ b/postproc/Makefile @@ -22,7 +22,7 @@ CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. $(EXTRA_INC) # .PHONY: all clean .c.o: - $(CC) -c $(CFLAGS) -o $@ $< + $(CC) -c $(CFLAGS) -I.. -o $@ $< all: $(SWSLIB) $(PPLIB) $(SPPLIB) @@ -45,7 +45,7 @@ cs_test: $(CS_TEST_OBJS) ifeq ($(SHARED_PP),yes) postprocess_pic.o: postprocess.c - $(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -o $@ $< + $(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -I.. -o $@ $< $(SPPLIB): $(SPPOBJS) $(CC) -shared -Wl,-soname,$(SPPLIB).0 \ |