~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to libgimpconfig/makefile.msc

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Makefile for building the GIMP DLLs and LIBs with Microsoft C.
 
2
## Use: nmake -f makefile.msc
 
3
 
 
4
TOP = ..\..
 
5
PRJ_TOP = ..
 
6
!include $(TOP)\glib\build\win32\make.msc
 
7
 
 
8
!INCLUDE $(PRJ_TOP)\gimpdefs.msc
 
9
PKG_VER = $(GIMP_VER)
 
10
 
 
11
################################################################
 
12
 
 
13
# Nothing much configurable below
 
14
 
 
15
INCLUDES = -I.. 
 
16
# DEFINES = -DG_LOG_DOMAIN=\"LibGimpConfig\"
 
17
DEPCFLAGS = \
 
18
        -FImsvc_recommended_pragmas.h \
 
19
        $(GLIB_CFLAGS)
 
20
 
 
21
DEPLIBS = $(GLIB_LIBS) $(INTL_LIBS) \
 
22
        ..\libgimpbase\gimpbase-$(GIMP_VER).lib \
 
23
        ..\libgimpcolor\gimpcolor-$(GIMP_VER).lib \
 
24
        ..\libgimpmath\gimpmath-$(GIMP_VER).lib \
 
25
 
 
26
all : \
 
27
        ..\config.h \
 
28
        gimpconfig-$(GIMP_VER).dll
 
29
 
 
30
..\config.h : ..\config.h.win32
 
31
        copy ..\config.h.win32 ..\config.h
 
32
 
 
33
install : all
 
34
        $(INSTALL) gimpconfig-$(GIMP_VER).dll $(BIN)
 
35
 
 
36
OBJECTS = \
 
37
        gimpcolorconfig-enums.obj \
 
38
        gimpcolorconfig.obj \
 
39
        gimpconfig-deserialize.obj \
 
40
        gimpconfig-error.obj \
 
41
        gimpconfig-iface.obj \
 
42
        gimpconfig-path.obj \
 
43
        gimpconfig-serialize.obj \
 
44
        gimpconfig-utils.obj \
 
45
        gimpconfigwriter.obj \
 
46
        gimpscanner.obj \
 
47
 
 
48
gimpconfig-$(GIMP_VER).dll : $(OBJECTS) gimpconfig.def
 
49
        $(CC) $(CFLAGS) -LD -Fegimpconfig-$(GIMP_VER).dll $(OBJECTS) $(DEPLIBS) $(LDFLAGS) user32.lib /def:gimpconfig.def
 
50