44 lines
491 B
Makefile
44 lines
491 B
Makefile
MODULE = winhlp32.exe
|
|
APPMODE = -mwindows
|
|
IMPORTS = user32 gdi32
|
|
DELAYIMPORTS = shell32 comctl32 comdlg32
|
|
|
|
C_SRCS = \
|
|
callback.c \
|
|
hlpfile.c \
|
|
macro.c \
|
|
string.c \
|
|
winhelp.c
|
|
|
|
LEX_SRCS = macro.lex.l
|
|
|
|
RC_SRCS = \
|
|
Da.rc \
|
|
De.rc \
|
|
En.rc \
|
|
Es.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 \
|
|
Sr.rc \
|
|
Sv.rc \
|
|
Uk.rc \
|
|
Zh.rc \
|
|
winhlp32.rc
|
|
|
|
PO_SRCS = winhlp32.rc
|
|
|
|
SVG_SRCS = winhelp.svg
|
|
|
|
@MAKE_PROG_RULES@
|