Make wcmd available from inside the source tree.
This commit is contained in:
parent
2b87b23321
commit
9e2ab03883
|
@ -68,6 +68,7 @@ INSTALLPROGS = \
|
||||||
|
|
||||||
# Symlinks to apps that we want to run from inside the source tree
|
# Symlinks to apps that we want to run from inside the source tree
|
||||||
SYMLINKS = \
|
SYMLINKS = \
|
||||||
|
wcmd.exe \
|
||||||
wineconsole.exe \
|
wineconsole.exe \
|
||||||
winedbg.exe \
|
winedbg.exe \
|
||||||
winhelp.exe
|
winhelp.exe
|
||||||
|
@ -117,6 +118,9 @@ check test:: $(SUBDIRS:%=%/__test__)
|
||||||
|
|
||||||
# Rules for symlinks
|
# Rules for symlinks
|
||||||
|
|
||||||
|
wcmd.exe$(DLLEXT): wcmd/wcmd.exe$(DLLEXT)
|
||||||
|
$(RM) $@ && $(LN_S) wcmd/wcmd.exe$(DLLEXT) $@
|
||||||
|
|
||||||
wineconsole.exe$(DLLEXT): wineconsole/wineconsole.exe$(DLLEXT)
|
wineconsole.exe$(DLLEXT): wineconsole/wineconsole.exe$(DLLEXT)
|
||||||
$(RM) $@ && $(LN_S) wineconsole/wineconsole.exe$(DLLEXT) $@
|
$(RM) $@ && $(LN_S) wineconsole/wineconsole.exe$(DLLEXT) $@
|
||||||
|
|
||||||
|
@ -126,6 +130,7 @@ winedbg.exe$(DLLEXT): winedbg/winedbg.exe$(DLLEXT)
|
||||||
winhelp.exe$(DLLEXT): winhelp/winhelp.exe$(DLLEXT)
|
winhelp.exe$(DLLEXT): winhelp/winhelp.exe$(DLLEXT)
|
||||||
$(RM) $@ && $(LN_S) winhelp/winhelp.exe$(DLLEXT) $@
|
$(RM) $@ && $(LN_S) winhelp/winhelp.exe$(DLLEXT) $@
|
||||||
|
|
||||||
|
wcmd/wcmd.exe$(DLLEXT): wcmd
|
||||||
wineconsole/wineconsole.exe$(DLLEXT): wineconsole
|
wineconsole/wineconsole.exe$(DLLEXT): wineconsole
|
||||||
winedbg/winedbg.exe$(DLLEXT): winedbg
|
winedbg/winedbg.exe$(DLLEXT): winedbg
|
||||||
winhelp/winhelp.exe$(DLLEXT): winhelp
|
winhelp/winhelp.exe$(DLLEXT): winhelp
|
||||||
|
|
Loading…
Reference in New Issue