51 lines
835 B
Makefile
51 lines
835 B
Makefile
EXTRADEFS = -D__WINE__ -DWINE_NO_UNICODE_MACROS
|
|
MODULE = winefile.exe
|
|
APPMODE = -mwindows
|
|
IMPORTS = uuid shell32 comdlg32 comctl32 ole32 mpr version user32 gdi32 advapi32
|
|
|
|
C_SRCS = \
|
|
splitpath.c \
|
|
winefile.c
|
|
|
|
RC_SRCS = \
|
|
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 = winefile.man
|
|
|
|
SVG_SRCS = winefile.svg
|
|
|
|
@MAKE_PROG_RULES@
|
|
|
|
all: $(MANPAGES)
|
|
|
|
install-man-pages:: $(MANPAGES) $(DESTDIR)$(mandir)/man$(prog_manext)
|
|
$(INSTALL_DATA) winefile.man $(DESTDIR)$(mandir)/man$(prog_manext)/winefile.$(prog_manext)
|
|
|
|
@WOW64_DISABLE@ install install-lib:: install-man-pages
|
|
|
|
uninstall::
|
|
$(RM) $(DESTDIR)$(mandir)/man$(prog_manext)/winefile.$(prog_manext)
|