~ubuntu-branches/ubuntu/raring/wxwidgets2.8/raring

« back to all changes in this revision

Viewing changes to src/png/makefile.unx

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber
  • Date: 2012-01-07 13:59:25 UTC
  • mfrom: (1.1.9) (5.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20120107135925-2601miy9ullcon9j
Tags: 2.8.12.1-6ubuntu1
* Resync from Debian, changes that were kept:
  - debian/rules: re-enable mediactrl. This allows libwx_gtk2u_media-2.8 to be
    built, as this is required by some applications (LP: #632984)
  - debian/control: Build-dep on libxt-dev for mediactrl.
  - Patches
    + fix-bashism-in-example
* Add conflict on python-wxgtk2.8 (<< 2.8.12.1-6ubuntu1~) to python-wxversion
  to guarantee upgrade ordering when moving from pycentral to dh_python2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# File:         makefile.unx
3
 
# Author:       Julian Smart
4
 
# Created:      1998
5
 
# Updated:      
6
 
# Copyright:    (c) 1998
7
 
#
8
 
#
9
 
# Makefile for PNG library, Unix
10
 
 
11
 
include ../make.env
12
 
 
13
 
TARGETLIB=../../lib/libpng.a
14
 
 
15
 
LIB_C_SRC = png.c pngread.c pngrtran.c pngrutil.c \
16
 
 pngpread.c pngtrans.c pngwrite.c pngwtran.c pngwutil.c \
17
 
 pngerror.c pngmem.c pngwio.c pngrio.c pngget.c pngset.c
18
 
 
19
 
all:    $(TARGETLIB)
20
 
 
21
 
# Define library objects
22
 
OBJECTS=\
23
 
 $(LIB_C_SRC:.c=.o)
24
 
 
25
 
$(TARGETLIB) : $(OBJECTS)
26
 
        ar $(AROPTIONS) $@ $(OBJECTS)
27
 
        $(RANLIB) $@
28
 
 
29
 
clean:
30
 
        rm -f $(OBJECTS) $(TARGETLIB)