mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 05:15:01 +00:00
a26aa0af4c
registry.c file. Also clean up all the various registry keys we need to open and create to this module and modify the functions for msi.c to call these functions.
54 lines
916 B
Makefile
54 lines
916 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = msi.dll
|
|
IMPORTS = shell32 cabinet oleaut32 ole32 version user32 gdi32 advapi32 kernel32
|
|
EXTRALIBS = -luuid $(LIBUNICODE)
|
|
|
|
C_SRCS = \
|
|
action.c \
|
|
create.c \
|
|
distinct.c \
|
|
handle.c \
|
|
insert.c \
|
|
msi.c \
|
|
msiquery.c \
|
|
order.c \
|
|
package.c \
|
|
preview.c \
|
|
record.c \
|
|
registry.c \
|
|
regsvr.c \
|
|
select.c \
|
|
string.c \
|
|
suminfo.c \
|
|
table.c \
|
|
tokenize.c \
|
|
update.c \
|
|
where.c
|
|
|
|
RC_SRCS = version.rc
|
|
|
|
EXTRA_SRCS = sql.y cond.y
|
|
EXTRA_OBJS = sql.tab.o cond.tab.o
|
|
|
|
SUBDIRS = tests
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
sql.tab.c sql.tab.h: sql.y
|
|
$(BISON) -p SQL_ -d $(SRCDIR)/sql.y -o sql.tab.c
|
|
|
|
cond.tab.c cond.tab.h: cond.y
|
|
$(BISON) -p COND_ -d $(SRCDIR)/cond.y -o cond.tab.c
|
|
|
|
# hack to allow parallel make
|
|
sql.tab.h: sql.tab.c
|
|
sql.tab.o: sql.tab.h
|
|
cond.tab.h: cond.tab.c
|
|
cond.tab.o: cond.tab.h
|
|
|
|
tokenize.o: sql.tab.h
|
|
|
|
### Dependencies:
|