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

« back to all changes in this revision

Viewing changes to plug-ins/script-fu/re/re.makefile

  • 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 TinyScheme's extension library "re" (regular expressions) 
 
2
# Time-stamp: <2002-06-24 14:13:42 gildea> 
 
3
 
 
4
SCHEME_H_DIR=..
 
5
 
 
6
# Windows/2000 
 
7
# CC = cl -nologo 
 
8
# DEBUG = -W3 -Z7 -MD 
 
9
# SYS_LIBS= 
 
10
# Osuf=obj 
 
11
# SOsuf=dll 
 
12
# LD = link -nologo 
 
13
# LDFLAGS = -debug -map -dll -incremental:no 
 
14
# OUT = -out:$@ 
 
15
 
 
16
# Unix, generally 
 
17
CC = gcc -fpic 
 
18
DEBUG=-g -Wall -Wno-char-subscripts -O 
 
19
Osuf=o 
 
20
SOsuf=so 
 
21
OUT = -o $@ 
 
22
 
 
23
# Linux 
 
24
LD = gcc 
 
25
LDFLAGS = -shared 
 
26
SYS_LIBS= 
 
27
 
 
28
# Solaris 
 
29
# LD = /usr/ccs/bin/ld 
 
30
## -Bsymbolic nec. because we have fns w same name as in libc. 
 
31
# LDFLAGS = -G -Bsymbolic -z text 
 
32
# SYS_LIBS= -lc 
 
33
 
 
34
SRCS = re.c debug.c regcomp.c regerror.c regexec.c regfree.c split.c 
 
35
OBJS = $(SRCS:.c=.$(Osuf)) 
 
36
 
 
37
all: re.$(SOsuf) 
 
38
 
 
39
%.$(Osuf): %.c 
 
40
        $(CC) -c $(DEBUG) -DUSE_DL -I. -I$(SCHEME_H_DIR) $+ 
 
41
 
 
42
re.$(SOsuf): $(OBJS) 
 
43
        $(LD) $(LDFLAGS) $(OUT) $+ $(SYS_LIBS) 
 
44
 
 
45
clean: 
 
46
        -rm -f $(OBJS) re.$(SOsuf)