28 lines
468 B
Makefile
28 lines
468 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = winhlp32.exe
|
|
APPMODE = -mwindows
|
|
IMPORTS = user32 gdi32 kernel32
|
|
DELAYIMPORTS = shell32 comctl32 comdlg32
|
|
|
|
C_SRCS = \
|
|
callback.c \
|
|
hlpfile.c \
|
|
macro.c \
|
|
string.c \
|
|
winhelp.c
|
|
|
|
LEX_SRCS = macro.lex.l
|
|
|
|
EXTRARCFLAGS = -DWINELIB
|
|
|
|
RC_SRCS = rsrc.rc
|
|
|
|
SVG_SRCS = winhelp.svg
|
|
|
|
@MAKE_PROG_RULES@
|
|
|
|
@DEPENDENCIES@ # everything below this line is overwritten by make depend
|