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