~ubuntu-branches/ubuntu/karmic/gcin/karmic

« back to all changes in this revision

Viewing changes to gtk-im/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Wen-Yen Chuang
  • Date: 2007-04-15 00:42:03 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20070415004203-1tx20zk9hovt1ez0
Tags: 1.3.4-2
The "Nobuta power! Cyuunyuu!" Release.

* Update for GTK+ 2.10. (Closes: #419293)
* debian/control:
  - bump up the libgtk2.0-dev build-dep to >= 2.10.1-1.
  - remove dependency for libgtk2.0-bin
* debian/gcin.postinst:
  debian/gcin.postrm:
  - remove update-gtk-immodules
* debian/rules:
  - call dh_gtkmodules with LD_LIBRARY_PATH.
  - remove scripts for GTK+ version detection.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
endif
12
12
 
13
13
.SUFFIXES:      .c .o .E
14
 
CFLAGS = $(OPTFLAGS) $(EXTRA_INC) $(GTKINC) -I../im-client -I.. -I../IMdkit/include -DCLIENT_LIB=1
 
14
CFLAGS = $(OPTFLAGS) $(EXTRA_INC) $(GTKINC) -I../im-client -I.. \
 
15
-I../IMdkit/include -DCLIENT_LIB=1 -DMAC_OS=$(MAC_OS) -DFREEBSD=$(FREEBSD)
15
16
 
16
17
ifeq ($(NEW_GTK_IM),Y)
17
18
CFLAGS += -DNEW_GTK_IM=1
18
19
endif
19
20
 
20
21
.c.o:
21
 
        $(CC) -c -fpic $(CFLAGS) -o $@ $<
 
22
        $(CC) -c -fPIC $(CFLAGS) -o $@ $<
 
23
 
 
24
.c.E:
 
25
        $(CC) -E $(CFLAGS) -o $@ $<
22
26
 
23
27
im-gcin.so:     $(OBJS) ../im-client/libgcin-im-client.so
24
28
        export LD_RUN_PATH=$(gcinlibdir) ;\
26
30
        rm -f core.*
27
31
 
28
32
clean:
29
 
        rm -f *.o *.so *~ core.* .depend
 
33
        rm -f *.o *.so *~ core.* .depend *.E
30
34
 
31
35
install:
32
36
        if [ $(prefix) = /usr/local ]; then \