~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/dlls/shell32/Makefile.in

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  1 EXTRADEFS = -D_SHELL32_ -DCOM_NO_WINDOWS_H
  2 TOPSRCDIR = @top_srcdir@
  3 TOPOBJDIR = ../..
  4 SRCDIR    = @srcdir@
  5 VPATH     = @srcdir@
  6 MODULE    = shell32.dll
  7 IMPORTLIB = shell32
  8 IMPORTS   = uuid shlwapi comctl32 user32 gdi32 advapi32 kernel32 ntdll
  9 DELAYIMPORTS = ole32 oleaut32 shdocvw version
 10 
 11 C_SRCS = \
 12         appbar.c \
 13         assoc.c \
 14         autocomplete.c \
 15         brsfolder.c \
 16         changenotify.c \
 17         classes.c \
 18         clipboard.c \
 19         control.c \
 20         cpanelfolder.c \
 21         dataobject.c \
 22         dde.c \
 23         debughlp.c \
 24         dialogs.c \
 25         dragdrophelper.c \
 26         enumidlist.c \
 27         folders.c \
 28         iconcache.c \
 29         pidl.c \
 30         recyclebin.c \
 31         regsvr.c \
 32         shell32_main.c \
 33         shellitem.c \
 34         shelllink.c \
 35         shellole.c \
 36         shellord.c \
 37         shellpath.c \
 38         shellreg.c \
 39         shellstring.c \
 40         shfldr_desktop.c \
 41         shfldr_fs.c \
 42         shfldr_mycomp.c \
 43         shfldr_netplaces.c \
 44         shfldr_unixfs.c \
 45         shlexec.c \
 46         shlfileop.c \
 47         shlfolder.c \
 48         shlfsbind.c \
 49         shlmenu.c \
 50         shlview.c \
 51         shpolicy.c \
 52         shv_bg_cmenu.c \
 53         shv_item_cmenu.c \
 54         systray.c \
 55         trash.c \
 56         xdg.c
 57 
 58 RC_SRCS = \
 59         shell32_Bg.rc \
 60         shell32_Ca.rc \
 61         shell32_Cs.rc \
 62         shell32_Da.rc \
 63         shell32_De.rc \
 64         shell32_En.rc \
 65         shell32_Eo.rc \
 66         shell32_Es.rc \
 67         shell32_Fi.rc \
 68         shell32_Fr.rc \
 69         shell32_Hu.rc \
 70         shell32_It.rc \
 71         shell32_Ja.rc \
 72         shell32_Ko.rc \
 73         shell32_Lt.rc \
 74         shell32_Nl.rc \
 75         shell32_No.rc \
 76         shell32_Pl.rc \
 77         shell32_Pt.rc \
 78         shell32_Ro.rc \
 79         shell32_Ru.rc \
 80         shell32_Si.rc \
 81         shell32_Sk.rc \
 82         shell32_Sv.rc \
 83         shell32_Tr.rc \
 84         shell32_Uk.rc \
 85         shell32_Wa.rc \
 86         shell32_Zh.rc \
 87         shres.rc \
 88         version.rc
 89 
 90 SVG_SRCS = \
 91         desktop.svg \
 92         folder.svg \
 93         folder_open.svg \
 94         mycomputer.svg \
 95         mydocs.svg \
 96         trash_file.svg
 97 
 98 EXTRA_OBJS = authors.o
 99 
100 @MAKE_DLL_RULES@
101 
102 authors.c: $(TOPSRCDIR)/AUTHORS
103         (LC_ALL=C; export LC_ALL; echo 'const char * const SHELL_Authors[] = {' && \
104          sed -e '1,2d' -e 's/\(.*\)/  \"\1\",/' $(TOPSRCDIR)/AUTHORS && \
105          echo '  0 };') >$@ || ($(RM) $@ && false)
106 
107 clean::
108         $(RM) authors.c
109 
110 @DEPENDENCIES@  # everything below this line is overwritten by make depend

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.