24 lines
496 B
Makefile
24 lines
496 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = wordpad.exe
|
|
APPMODE = -mwindows -mno-cygwin
|
|
IMPORTS = comdlg32 shell32 user32 gdi32 advapi32 kernel32 comctl32
|
|
EXTRAINCL = -I$(TOPSRCDIR)/include/msvcrt
|
|
EXTRADEFS = -DNO_LIBWINE_PORT
|
|
MODCFLAGS = @BUILTINFLAG@
|
|
|
|
C_SRCS = \
|
|
print.c \
|
|
registry.c \
|
|
wordpad.c
|
|
|
|
RC_SRCS = rsrc.rc
|
|
|
|
SVG_SRCS = wordpad.svg
|
|
|
|
@MAKE_PROG_RULES@
|
|
|
|
@DEPENDENCIES@ # everything below this line is overwritten by make depend
|