Added rules for building import libraries in the individual dll
[wine/wine64.git] / dlls / msi / Makefile.in
blob8b0574901d2cfb8c6eacc3cf96bb8e13c48e9245
1 TOPSRCDIR = @top_srcdir@
2 TOPOBJDIR = ../..
3 SRCDIR = @srcdir@
4 VPATH = @srcdir@
5 MODULE = msi.dll
6 IMPORTLIB = libmsi.$(IMPLIBEXT)
7 IMPORTS = shell32 cabinet oleaut32 ole32 version user32 gdi32 advapi32 kernel32
8 EXTRALIBS = -luuid $(LIBUNICODE)
10 C_SRCS = \
11 action.c \
12 appsearch.c \
13 create.c \
14 custom.c \
15 database.c \
16 delete.c \
17 dialog.c \
18 distinct.c \
19 format.c \
20 handle.c \
21 insert.c \
22 msi.c \
23 msiquery.c \
24 order.c \
25 package.c \
26 preview.c \
27 record.c \
28 registry.c \
29 regsvr.c \
30 select.c \
31 string.c \
32 suminfo.c \
33 table.c \
34 tokenize.c \
35 update.c \
36 where.c
38 RC_SRCS = msi.rc
40 EXTRA_SRCS = sql.y cond.y
41 EXTRA_OBJS = sql.tab.o cond.tab.o
43 SUBDIRS = tests
45 @MAKE_DLL_RULES@
47 sql.tab.c sql.tab.h: sql.y
48 $(BISON) -p SQL_ -d $(SRCDIR)/sql.y -o sql.tab.c
50 cond.tab.c cond.tab.h: cond.y
51 $(BISON) -p COND_ -d $(SRCDIR)/cond.y -o cond.tab.c
53 # hack to allow parallel make
54 sql.tab.h: sql.tab.c
55 sql.tab.o: sql.tab.h
56 cond.tab.h: cond.tab.c
57 cond.tab.o: cond.tab.h
59 tokenize.o: sql.tab.h
61 ### Dependencies: