mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
67371bcc8d
Added -exe mode to generate a .spec.c for an exe without having to provide a .spec. Removed some no longer needed spec files. Removed .dll extension in makefiles import specifications.
52 lines
859 B
Makefile
52 lines
859 B
Makefile
EXTRADEFS = -D_SHELL32_
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = shell32.dll
|
|
# fixme: avoid ole32.dll import
|
|
IMPORTS = ole32 shlwapi comctl32 user32 gdi32 advapi32 kernel32 ntdll
|
|
ALTNAMES = shell.dll
|
|
EXTRALIBS = $(LIBUUID) $(LIBUNICODE)
|
|
|
|
LDDLLFLAGS = @LDDLLFLAGS@
|
|
SYMBOLFILE = $(MODULE).tmp.o
|
|
|
|
C_SRCS = \
|
|
brsfolder.c \
|
|
changenotify.c \
|
|
classes.c \
|
|
clipboard.c \
|
|
control.c \
|
|
dataobject.c \
|
|
debughlp.c \
|
|
dialogs.c \
|
|
enumidlist.c \
|
|
folders.c \
|
|
iconcache.c \
|
|
memorystream.c \
|
|
pidl.c \
|
|
shell32_main.c \
|
|
shell.c \
|
|
shelllink.c \
|
|
shlmenu.c \
|
|
shellole.c \
|
|
shellord.c \
|
|
shellpath.c \
|
|
shellstring.c \
|
|
shellreg.c \
|
|
shlexec.c \
|
|
shlfileop.c \
|
|
shlfolder.c \
|
|
shlview.c \
|
|
shpolicy.c \
|
|
shv_bg_cmenu.c \
|
|
shv_item_cmenu.c \
|
|
systray.c
|
|
|
|
RC_SRCS= shres.rc
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
### Dependencies:
|