~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to extern/ffmpeg/libpostproc/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Lukas Fittl
  • Date: 2006-09-20 01:57:27 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060920015727-gmoqlxwstx9wwqs3
Tags: 2.42a-1ubuntu1
* Merge from Debian unstable (Closes: Malone #55903). Remaining changes:
  - debian/genpot: Add python scripts from Lee June <blender@eyou.com> to
    generate a reasonable PO template from the sources. Since gettext is used
    in a highly nonstandard way, xgettext does not work for this job.
  - debian/rules: Call the scripts, generate po/blender.pot, and clean it up
    in the clean target.
  - Add a proper header to the generated PO template.
* debian/control: Build depend on libavformat-dev >= 3:0.cvs20060823-3.1,
  otherwise this package will FTBFS

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
18
CFLAGS  = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -I$(SRC_PATH)/libavcodec -I../.. $(EXTRA_INC)
 
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