~ubuntu-branches/ubuntu/utopic/gimp/utopic

« back to all changes in this revision

Viewing changes to plug-ins/script-fu/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Ari Pollak
  • Date: 2013-02-23 11:52:27 UTC
  • mto: (1.1.28) (0.6.1 sid)
  • mto: This revision was merged to the branch mainline in revision 77.
  • Revision ID: package-import@ubuntu.com-20130223115227-erjyrlri4ku3ysap
ImportĀ upstreamĀ versionĀ 2.8.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## Process this file with automake to produce Makefile.in
2
2
 
 
3
if PLATFORM_OSX
 
4
xobjective_c = "-xobjective-c"
 
5
framework_cocoa = -framework Cocoa
 
6
endif
 
7
 
3
8
if OS_WIN32
4
9
mwindows = -mwindows
5
10
WINSOCK_LIBS = -lws2_32
24
29
endif
25
30
 
26
31
AM_CFLAGS = \
27
 
        -DSTANDALONE=0     \
28
 
        -DUSE_INTERFACE=1  \
29
 
        -DUSE_STRLWR=0     \
30
 
        -I$(top_srcdir)    \
31
 
        $(GTK_CFLAGS)      \
32
 
        -I$(includedir)
33
 
 
34
 
AM_LDFLAGS = $(mwindows)
 
32
        -DSTANDALONE=0          \
 
33
        -DUSE_INTERFACE=1       \
 
34
        -DUSE_STRLWR=0
 
35
 
 
36
INCLUDES = \
 
37
        -I$(top_srcdir) \
 
38
        $(GTK_CFLAGS)   \
 
39
        -I$(includedir) \
 
40
        $(xobjective_c)
 
41
 
 
42
AM_LDFLAGS = \
 
43
        $(mwindows)     \
 
44
        $(framework_cocoa)
35
45
 
36
46
SUBDIRS = tinyscheme ftx scripts
37
47