]> granicus.if.org Git - python/commitdiff
Add unsupported variable EXE which can be set to .exe on systems where
authorGuido van Rossum <guido@python.org>
Fri, 22 Aug 1997 20:53:47 +0000 (20:53 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 22 Aug 1997 20:53:47 +0000 (20:53 +0000)
the executable must have that suffix.  Note that there is no
corresponding support in the top-level Makefile because I'm not sure
that the install targets there make sense under these circumstances.

Modules/Makefile.pre.in

index a187b7b2c3056b1b33c0e854a42dfc789792f26b..a5b2f974e4c2e69a2c1400438c9c0c0654829caf 100644 (file)
@@ -123,11 +123,14 @@ add2lib:  $(OBJS)
                $(AR) cr $(LIBRARY) $(OBJS)
                touch add2lib
 
+# Use ``EXE=.exe'' for Unix emulations on DOS/Windows
+EXE=
+
 # This target is used by the master Makefile to link the final binary.
 link:          $(MAINOBJ)
                $(LINKCC) $(LDFLAGS) $(OPT) $(LINKFORSHARED) $(MAINOBJ) \
                  $(LIBRARY) $(MODLIBS) $(LIBS) $(SYSLIBS) -o python $(LDLAST)
-               mv python ../python
+               mv python$(EXE) ../python$(EXE)
 
 clean:
                -rm -f *.o python core *~ [@,#]* *.old *.orig *.rej add2lib