Mercurial > libpostproc.hg
annotate Makefile @ 6:5229d34437f3 libpostproc
Remove erroneous -I../.. flag that points outside of the src directory.
author | diego |
---|---|
date | Wed, 05 Jul 2006 14:09:37 +0000 |
parents | 6cb3b747b46b |
children | b7f4f60b088b |
rev | line source |
---|---|
0 | 1 |
2 include ../config.mak | |
3 | |
4 # Overload incdir, postproc include files go in a different directory. | |
5 incdir=$(prefix)/include/postproc | |
6 | |
7 NAME=postproc | |
8 ifeq ($(BUILD_SHARED),yes) | |
9 LIBVERSION=$(SPPVERSION) | |
10 LIBMAJOR=$(SPPMAJOR) | |
11 endif | |
12 | |
13 STATIC_OBJS=postprocess.o | |
14 SHARED_OBJS=postprocess_pic.o | |
15 | |
16 HEADERS = postprocess.h | |
17 | |
6
5229d34437f3
Remove erroneous -I../.. flag that points outside of the src directory.
diego
parents:
2
diff
changeset
|
18 CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -I$(SRC_PATH)/libavcodec $(EXTRA_INC) |
0 | 19 # -I/usr/X11R6/include/ |
20 | |
21 include $(SRC_PATH)/common.mak | |
22 | |
23 ifeq ($(BUILD_SHARED),yes) | |
24 postprocess_pic.o: postprocess.c | |
25 $(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -I.. -I../.. -o $@ $< | |
26 endif | |
27 |