38 lines
605 B
Makefile
38 lines
605 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = regedit.exe
|
|
APPMODE = gui
|
|
IMPORTS = msvcrt advapi32 kernel32
|
|
DELAYIMPORTS = shell32 comdlg32 comctl32 user32 gdi32
|
|
EXTRAINCL = -I$(TOPSRCDIR)/include/msvcrt
|
|
EXTRADEFS = -DNO_LIBWINE_PORT
|
|
|
|
C_SRCS = \
|
|
about.c \
|
|
childwnd.c \
|
|
edit.c \
|
|
framewnd.c \
|
|
listview.c \
|
|
main.c \
|
|
regedit.c \
|
|
regproc.c \
|
|
treeview.c
|
|
|
|
RC_SRCS = rsrc.rc
|
|
RC_BINSRC = resource.rc
|
|
RC_BINARIES = \
|
|
folder1.bmp \
|
|
folder2.bmp \
|
|
folder3.bmp
|
|
|
|
PLTESTS = \
|
|
tests/regedit.pl
|
|
|
|
EXTRASUBDIRS = tests
|
|
|
|
@MAKE_PROG_RULES@
|
|
|
|
### Dependencies:
|