44 lines
589 B
Makefile
44 lines
589 B
Makefile
MODULE = wordpad.exe
|
|
APPMODE = -mwindows -mno-cygwin
|
|
IMPORTS = comdlg32 uuid ole32 shell32 user32 gdi32 advapi32 comctl32
|
|
EXTRAINCL = -I$(top_srcdir)/include/msvcrt
|
|
EXTRADEFS = -DNO_LIBWINE_PORT
|
|
MODCFLAGS = @BUILTINFLAG@
|
|
|
|
C_SRCS = \
|
|
olecallback.c \
|
|
print.c \
|
|
registry.c \
|
|
wordpad.c
|
|
|
|
RC_SRCS = \
|
|
Da.rc \
|
|
De.rc \
|
|
En.rc \
|
|
Fr.rc \
|
|
He.rc \
|
|
It.rc \
|
|
Ja.rc \
|
|
Ko.rc \
|
|
Lt.rc \
|
|
Nl.rc \
|
|
No.rc \
|
|
Pl.rc \
|
|
Pt.rc \
|
|
Ro.rc \
|
|
Ru.rc \
|
|
Si.rc \
|
|
Sv.rc \
|
|
Uk.rc \
|
|
Zh.rc \
|
|
wordpad.rc
|
|
|
|
PO_SRCS = wordpad.rc
|
|
|
|
SVG_SRCS = \
|
|
formatbar.svg \
|
|
toolbar.svg \
|
|
wordpad.svg
|
|
|
|
@MAKE_PROG_RULES@
|