~ubuntu-branches/ubuntu/oneiric/postgresql-9.1/oneiric-security

« back to all changes in this revision

Viewing changes to src/interfaces/ecpg/test/compat_informix/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-05-11 10:41:53 UTC
  • Revision ID: james.westby@ubuntu.com-20110511104153-psbh2o58553fv1m0
Tags: upstream-9.1~beta1
ImportĀ upstreamĀ versionĀ 9.1~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
subdir = src/interfaces/ecpg/test/compat_informix
 
2
top_builddir = ../../../../..
 
3
include $(top_builddir)/src/Makefile.global
 
4
include $(top_srcdir)/$(subdir)/../Makefile.regress
 
5
 
 
6
# special informix compatibility switches
 
7
ECPG += -C INFORMIX
 
8
ECPG_NOIND  = $(ECPG) -r no_indicator
 
9
 
 
10
override LDFLAGS := -L../../compatlib $(LDFLAGS)
 
11
override LIBS := -lecpg_compat $(LIBS)
 
12
 
 
13
TESTS = test_informix test_informix.c \
 
14
        test_informix2 test_informix2.c \
 
15
        dec_test dec_test.c \
 
16
        rfmtdate rfmtdate.c \
 
17
        rfmtlong rfmtlong.c \
 
18
        rnull rnull.c \
 
19
        sqlda sqlda.c \
 
20
        describe describe.c \
 
21
        charfuncs charfuncs.c
 
22
 
 
23
all: $(TESTS)
 
24
 
 
25
test_informix.c: test_informix.pgc ../regression.h
 
26
        $(ECPG) -o $@ -I$(srcdir) $<
 
27
 
 
28
test_informix2.c: test_informix2.pgc ../regression.h
 
29
        $(ECPG) -o $@ -I$(srcdir) $<
 
30
 
 
31
sqlda.c: sqlda.pgc ../regression.h
 
32
        $(ECPG) -o $@ -I$(srcdir) $<
 
33
 
 
34
dec_test.c: dec_test.pgc ../regression.h
 
35
        $(ECPG) -o $@ -I$(srcdir) $<
 
36
 
 
37
rfmtdate.c: rfmtdate.pgc ../regression.h
 
38
        $(ECPG) -o $@ -I$(srcdir) $<
 
39
 
 
40
rfmtlong.c: rfmtlong.pgc ../regression.h
 
41
        $(ECPG) -o $@ -I$(srcdir) $<
 
42
 
 
43
rnull.c: rnull.pgc ../regression.h
 
44
        $(ECPG_NOIND) -o $@ -I$(srcdir) $<
 
45
 
 
46
charfuncs.c: charfuncs.pgc ../regression.h
 
47
        $(ECPG) -o $@ -I$(srcdir) $<