mirror of https://github.com/stella-emu/stella.git
Modified the copy command which creates the final executable to use the
DJGPP environment variable instead of assuming DJGPP is installed on the current drive. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@65 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
96de01ffb7
commit
1e94bb5a91
|
@ -13,7 +13,7 @@
|
|||
## See the file "license" for information on usage and redistribution of
|
||||
## this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
##
|
||||
## $Id: makefile,v 1.13 2002-03-21 22:48:54 stephena Exp $
|
||||
## $Id: makefile,v 1.14 2002-04-10 04:00:58 bwmott Exp $
|
||||
##============================================================================
|
||||
|
||||
##============================================================================
|
||||
|
@ -235,7 +235,7 @@ stella.exe: $(CORE_OBJS) $(OBJS)
|
|||
$(LD) -o a.exe *.o $(LDFLAGS) $(LDLIBS)
|
||||
exe2coff a.exe
|
||||
strip a
|
||||
copy /B \djgpp\bin\pmodstub.exe + a stella.exe
|
||||
copy /B $(DJGPP:\DJGPP.ENV=)\bin\pmodstub.exe + a stella.exe
|
||||
del a
|
||||
del a.exe
|
||||
|
||||
|
|
Loading…
Reference in New Issue