29 lines
485 B
Makefile
29 lines
485 B
Makefile
MODULE = regedit.exe
|
|
APPMODE = -mwindows -mno-cygwin
|
|
IMPORTS = advapi32
|
|
DELAYIMPORTS = shlwapi shell32 comdlg32 comctl32 user32 gdi32
|
|
EXTRAINCL = -I$(top_srcdir)/include/msvcrt
|
|
EXTRADEFS = -DNO_LIBWINE_PORT
|
|
MODCFLAGS = @BUILTINFLAG@
|
|
|
|
C_SRCS = \
|
|
about.c \
|
|
childwnd.c \
|
|
edit.c \
|
|
framewnd.c \
|
|
hexedit.c \
|
|
listview.c \
|
|
main.c \
|
|
regedit.c \
|
|
regproc.c \
|
|
treeview.c
|
|
|
|
RC_SRCS = regedit.rc
|
|
PO_SRCS = regedit.rc
|
|
|
|
MANPAGE = regedit.man
|
|
|
|
SVG_SRCS = regedit.svg
|
|
|
|
@MAKE_PROG_RULES@
|