63 lines
998 B
Makefile
63 lines
998 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 = \
|
|
Bg.rc \
|
|
Cs.rc \
|
|
Da.rc \
|
|
De.rc \
|
|
En.rc \
|
|
Es.rc \
|
|
Fr.rc \
|
|
He.rc \
|
|
Hu.rc \
|
|
It.rc \
|
|
Ja.rc \
|
|
Ko.rc \
|
|
Lt.rc \
|
|
Nl.rc \
|
|
No.rc \
|
|
Pl.rc \
|
|
Pt.rc \
|
|
Ro.rc \
|
|
Ru.rc \
|
|
Si.rc \
|
|
Sv.rc \
|
|
Tr.rc \
|
|
Uk.rc \
|
|
Zh.rc \
|
|
rsrc.rc
|
|
|
|
MANPAGES = regedit.man
|
|
|
|
SVG_SRCS = regedit.svg
|
|
|
|
@MAKE_PROG_RULES@
|
|
|
|
all: $(MANPAGES)
|
|
|
|
install-man-pages:: $(MANPAGES) $(DESTDIR)$(mandir)/man$(prog_manext)
|
|
$(INSTALL_DATA) regedit.man $(DESTDIR)$(mandir)/man$(prog_manext)/regedit.$(prog_manext)
|
|
|
|
@WOW64_DISABLE@ install install-lib:: install-man-pages
|
|
|
|
uninstall::
|
|
$(RM) $(DESTDIR)$(mandir)/man$(prog_manext)/regedit.$(prog_manext)
|