mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 19:18:42 +00:00
114 lines
1.8 KiB
Makefile
114 lines
1.8 KiB
Makefile
EXTRADEFS = -D_SHELL32_ -DCOM_NO_WINDOWS_H
|
|
MODULE = shell32.dll
|
|
IMPORTLIB = shell32
|
|
IMPORTS = uuid shlwapi comctl32 user32 gdi32 advapi32
|
|
DELAYIMPORTS = ole32 oleaut32 shdocvw version
|
|
|
|
C_SRCS = \
|
|
appbar.c \
|
|
assoc.c \
|
|
autocomplete.c \
|
|
brsfolder.c \
|
|
changenotify.c \
|
|
classes.c \
|
|
clipboard.c \
|
|
control.c \
|
|
cpanelfolder.c \
|
|
dataobject.c \
|
|
dde.c \
|
|
debughlp.c \
|
|
dialogs.c \
|
|
dragdrophelper.c \
|
|
ebrowser.c \
|
|
enumidlist.c \
|
|
folders.c \
|
|
iconcache.c \
|
|
pidl.c \
|
|
recyclebin.c \
|
|
shell32_main.c \
|
|
shelldispatch.c \
|
|
shellitem.c \
|
|
shelllink.c \
|
|
shellole.c \
|
|
shellord.c \
|
|
shellpath.c \
|
|
shellreg.c \
|
|
shellstring.c \
|
|
shfldr_desktop.c \
|
|
shfldr_fs.c \
|
|
shfldr_mycomp.c \
|
|
shfldr_netplaces.c \
|
|
shfldr_printers.c \
|
|
shfldr_unixfs.c \
|
|
shlexec.c \
|
|
shlfileop.c \
|
|
shlfolder.c \
|
|
shlfsbind.c \
|
|
shlmenu.c \
|
|
shlview.c \
|
|
shpolicy.c \
|
|
shv_bg_cmenu.c \
|
|
shv_item_cmenu.c \
|
|
systray.c \
|
|
trash.c \
|
|
xdg.c
|
|
|
|
RC_SRCS = \
|
|
shell32.rc \
|
|
shell32_Bg.rc \
|
|
shell32_Ca.rc \
|
|
shell32_Cs.rc \
|
|
shell32_Da.rc \
|
|
shell32_De.rc \
|
|
shell32_En.rc \
|
|
shell32_Eo.rc \
|
|
shell32_Es.rc \
|
|
shell32_Fi.rc \
|
|
shell32_Fr.rc \
|
|
shell32_He.rc \
|
|
shell32_Hu.rc \
|
|
shell32_It.rc \
|
|
shell32_Ja.rc \
|
|
shell32_Ko.rc \
|
|
shell32_Lt.rc \
|
|
shell32_Nl.rc \
|
|
shell32_No.rc \
|
|
shell32_Pl.rc \
|
|
shell32_Pt.rc \
|
|
shell32_Ro.rc \
|
|
shell32_Ru.rc \
|
|
shell32_Si.rc \
|
|
shell32_Sk.rc \
|
|
shell32_Sr.rc \
|
|
shell32_Sv.rc \
|
|
shell32_Tr.rc \
|
|
shell32_Uk.rc \
|
|
shell32_Wa.rc \
|
|
shell32_Zh.rc
|
|
|
|
PO_SRCS = shell32.rc
|
|
|
|
IDL_TLB_SRCS = shell32_tlb.idl
|
|
|
|
IDL_R_SRCS = shell32_classes.idl
|
|
|
|
SVG_SRCS = \
|
|
cdrom.svg \
|
|
control.svg \
|
|
delete.svg \
|
|
desktop.svg \
|
|
document.svg \
|
|
drive.svg \
|
|
floppy.svg \
|
|
folder.svg \
|
|
folder_open.svg \
|
|
mycomputer.svg \
|
|
mydocs.svg \
|
|
netdrive.svg \
|
|
netdrive2.svg \
|
|
printer.svg \
|
|
ramdisk.svg \
|
|
shortcut.svg \
|
|
trash_file.svg
|
|
|
|
@MAKE_DLL_RULES@
|