]> git.saurik.com Git - wxWidgets.git/blame - src/iodbc/Makefile
minValue and maxValue are interpreted correctly in SetRange() (were inversed)
[wxWidgets.git] / src / iodbc / Makefile
CommitLineData
1a6944fd
RR
1include Version.mk
2include Config.mk
3
4
5
6
7
8
9
10
11
12
13
14INCDIR = .
15OUTDIR = $(HOME)
16
17CFLAGS = -O $(PIC) $(ANSI) -I$(INCDIR) -D$(DLDAPI) $(CFLAGSX)\
18 -DVERSION=\"$(VERSION)$(EXTVER)\"
19
20ODBCDM = $(OUTDIR)/$(OUTFILE)-$(VERSION).$(DLSUFFIX)
21
22OBJS = dlf.o dlproc.o herr.o henv.o hdbc.o hstmt.o \
23 connect.o prepare.o execute.o result.o \
24 fetch.o info.o catalog.o misc.o itrace.o $(OBJX)
25
26all: $(OBJS)
27 @echo "Generating iODBC driver manager -->" $(ODBCDM)
28 @\rm -f $(ODBCDM)
29 @$(LD) $(LDFLAGS) $(OBJS) $(LIBS) -o $(ODBCDM)
30
31clean:
32 \rm -f $(OBJS)