mirror of
https://github.com/reactos/wine.git
synced 2024-12-03 17:31:15 +00:00
25 lines
428 B
Makefile
25 lines
428 B
Makefile
EXTRADEFS = -D_SPOOL32_
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = winspool.drv
|
|
IMPORTLIB = libwinspool.$(IMPLIBEXT)
|
|
IMPORTS = user32 gdi32 advapi32 kernel32 ntdll
|
|
|
|
C_SRCS = \
|
|
info.c \
|
|
wspool.c
|
|
|
|
RC_SRCS = winspool.rc
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
$(IMPORTLIB): $(MAINSPEC)
|
|
$(WINEBUILD) -w --def -o $@ --export $(SRCDIR)/$(MAINSPEC)
|
|
|
|
clean::
|
|
$(RM) $(IMPORTLIB)
|
|
|
|
### Dependencies:
|