27 lines
560 B
Makefile
27 lines
560 B
Makefile
EXTRADEFS = -DWINE_NO_UNICODE_MACROS
|
|
MODULE = msiexec.exe
|
|
APPMODE = -mwindows
|
|
IMPORTS = msi ole32 advapi32 user32
|
|
|
|
C_SRCS = \
|
|
msiexec.c \
|
|
service.c
|
|
|
|
RC_SRCS = rsrc.rc
|
|
|
|
MANPAGES = msiexec.man
|
|
|
|
SVG_SRCS = msiexec.svg
|
|
|
|
@MAKE_PROG_RULES@
|
|
|
|
all: $(MANPAGES)
|
|
|
|
install-man-pages:: $(MANPAGES) $(DESTDIR)$(mandir)/man$(prog_manext)
|
|
$(INSTALL_DATA) msiexec.man $(DESTDIR)$(mandir)/man$(prog_manext)/msiexec.$(prog_manext)
|
|
|
|
@WOW64_DISABLE@ install install-lib:: install-man-pages
|
|
|
|
uninstall::
|
|
$(RM) $(DESTDIR)$(mandir)/man$(prog_manext)/msiexec.$(prog_manext)
|