Makefile.in 569 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ../..
SRCDIR    = @srcdir@
VPATH     = @srcdir@
MODULE    = msi.dll
IMPORTS   = ole32 user32 advapi32 kernel32
EXTRALIBS = $(LIBUUID) $(LIBUNICODE)

C_SRCS = \
	distinct.c \
	handle.c \
	msi.c \
	msiquery.c \
	order.c \
	record.c \
	select.c \
	suminfo.c \
	table.c \
	tokenize.c \
	where.c

#RC_SRCS= msi_rc.rc

EXTRA_SRCS = sql.y 
EXTRA_OBJS = y.tab.o

@MAKE_DLL_RULES@

y.tab.c y.tab.h: sql.y
	$(YACC) -d -t $(SRCDIR)/sql.y

# hack to allow parallel make
y.tab.h: y.tab.c
y.tab.o: y.tab.h

36 37
tokenize.o: y.tab.h

38
### Dependencies: