Make wcmd available from inside the source tree.

oldstable
Uwe Bonnes 2002-11-30 02:21:04 +00:00 committed by Alexandre Julliard
parent 2b87b23321
commit 9e2ab03883
1 changed files with 5 additions and 0 deletions

View File

@ -68,6 +68,7 @@ INSTALLPROGS = \
# Symlinks to apps that we want to run from inside the source tree
SYMLINKS = \
wcmd.exe \
wineconsole.exe \
winedbg.exe \
winhelp.exe
@ -117,6 +118,9 @@ check test:: $(SUBDIRS:%=%/__test__)
# Rules for symlinks
wcmd.exe$(DLLEXT): wcmd/wcmd.exe$(DLLEXT)
$(RM) $@ && $(LN_S) wcmd/wcmd.exe$(DLLEXT) $@
wineconsole.exe$(DLLEXT): 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)
$(RM) $@ && $(LN_S) winhelp/winhelp.exe$(DLLEXT) $@
wcmd/wcmd.exe$(DLLEXT): wcmd
wineconsole/wineconsole.exe$(DLLEXT): wineconsole
winedbg/winedbg.exe$(DLLEXT): winedbg
winhelp/winhelp.exe$(DLLEXT): winhelp