mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 19:18:42 +00:00
69 lines
1.2 KiB
Makefile
69 lines
1.2 KiB
Makefile
EXTRADEFS = -D_COMCTL32_
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = comctl32.dll
|
|
IMPORTLIB = libcomctl32.$(IMPLIBEXT)
|
|
IMPORTS = user32 gdi32 advapi32 kernel32
|
|
DELAYIMPORTS = winmm uxtheme
|
|
|
|
C_SRCS = \
|
|
animate.c \
|
|
comboex.c \
|
|
comctl32undoc.c \
|
|
commctrl.c \
|
|
datetime.c \
|
|
dpa.c \
|
|
draglist.c \
|
|
dsa.c \
|
|
flatsb.c \
|
|
header.c \
|
|
hotkey.c \
|
|
imagelist.c \
|
|
ipaddress.c \
|
|
listview.c \
|
|
monthcal.c \
|
|
nativefont.c \
|
|
pager.c \
|
|
progress.c \
|
|
propsheet.c \
|
|
rebar.c \
|
|
smoothscroll.c \
|
|
status.c \
|
|
string.c \
|
|
syslink.c \
|
|
tab.c \
|
|
theme_combo.c \
|
|
theme_dialog.c \
|
|
theme_edit.c \
|
|
theme_listbox.c \
|
|
theming.c \
|
|
toolbar.c \
|
|
tooltips.c \
|
|
trackbar.c \
|
|
treeview.c \
|
|
updown.c
|
|
|
|
RC_SRCS = rsrc.rc
|
|
RC_BINSRC = rsrc.rc
|
|
RC_BINARIES = \
|
|
idb_hist_large.bmp \
|
|
idb_hist_small.bmp \
|
|
idb_std_large.bmp \
|
|
idb_std_small.bmp \
|
|
idb_view_large.bmp \
|
|
idb_view_small.bmp \
|
|
idc_copy.cur \
|
|
idc_divider.cur \
|
|
idc_divideropen.cur \
|
|
idc_movebutton.cur \
|
|
idi_dragarrow.ico \
|
|
idi_tt_error_sm.ico \
|
|
idi_tt_info_sm.ico \
|
|
idi_tt_warn_sm.ico \
|
|
idt_check.bmp
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
@DEPENDENCIES@ # everything below this line is overwritten by make depend
|