Make the msistring_makehash return something other than just 1 or
[wine] / dlls / msi / Makefile.in
1 TOPSRCDIR = @top_srcdir@
2 TOPOBJDIR = ../..
3 SRCDIR    = @srcdir@
4 VPATH     = @srcdir@
5 MODULE    = msi.dll
6 IMPORTS   = shell32 cabinet oleaut32 ole32 version user32 advapi32 kernel32
7 EXTRALIBS = -luuid $(LIBUNICODE)
8
9 C_SRCS = \
10         action.c \
11         create.c \
12         distinct.c \
13         handle.c \
14         insert.c \
15         msi.c \
16         msiquery.c \
17         order.c \
18         package.c \
19         record.c \
20         regsvr.c \
21         select.c \
22         string.c \
23         suminfo.c \
24         table.c \
25         tokenize.c \
26         update.c \
27         where.c
28
29 RC_SRCS = version.rc
30
31 EXTRA_SRCS = sql.y cond.y
32 EXTRA_OBJS = sql.tab.o cond.tab.o
33
34 @MAKE_DLL_RULES@
35
36 sql.tab.c sql.tab.h: sql.y
37         $(BISON) -p SQL_ -d $(SRCDIR)/sql.y -o sql.tab.c
38
39 cond.tab.c cond.tab.h: cond.y
40         $(BISON) -p COND_ -d $(SRCDIR)/cond.y -o cond.tab.c
41
42 # hack to allow parallel make
43 sql.tab.h: sql.tab.c
44 sql.tab.o: sql.tab.h
45 cond.tab.h: cond.tab.c
46 cond.tab.o: cond.tab.h
47
48 tokenize.o: sql.tab.h
49
50 ### Dependencies: