mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
Specify the extension to an executable dynamically.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10422 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5d0f08d856
commit
a18c3cda5c
@ -24,7 +24,16 @@ COL = col -b
|
||||
CP = /bin/cp
|
||||
DITROFF = ditroff
|
||||
DITROFF = groff
|
||||
EXEEXT = .exe
|
||||
|
||||
# This is a GNU make extension.
|
||||
# If you're flavour of make refuses to accept it,
|
||||
# then simply hardcode EXEEXT.
|
||||
ifeq ($(WINDIR),)
|
||||
EXEEXT =
|
||||
else
|
||||
EXEEXT = .exe
|
||||
endif
|
||||
|
||||
DT2DV = dt2dv$(EXEEXT)
|
||||
DV2DT = dv2dt$(EXEEXT)
|
||||
EXES = $(DT2DV) $(DV2DT)
|
||||
|
Loading…
Reference in New Issue
Block a user