mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	 951ab58024
			
		
	
	
		951ab58024
		
			
		
	
	
	
	
		
			
			This reverts commit 0da5466650.
The commit is causing make failures on a FreeBSD buildbot.
Due to the imminent 3.9.0b1 cutoff, revert this commit for
now pending further investigation.
		
	
			
		
			
				
	
	
		
			76 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| CC=@CC@
 | |
| LD=@CC@
 | |
| BASECFLAGS=@BASECFLAGS@
 | |
| OPT=@OPT@
 | |
| CFLAGS=@CFLAGS@ $(BASECFLAGS) $(OPT)
 | |
| LDFLAGS=@LDFLAGS@
 | |
| srcdir=         @srcdir@
 | |
| VERSION=	@VERSION@
 | |
| UNIVERSALSDK=@UNIVERSALSDK@
 | |
| builddir=	../..
 | |
| 
 | |
| RUNSHARED=      @RUNSHARED@
 | |
| BUILDEXE=       @BUILDEXEEXT@
 | |
| BUILDPYTHON=    $(builddir)/python$(BUILDEXE)
 | |
| PYTHONFRAMEWORK=@PYTHONFRAMEWORK@
 | |
| 
 | |
| # Deployment target selected during configure, to be checked
 | |
| # by distutils
 | |
| MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@
 | |
| @EXPORT_MACOSX_DEPLOYMENT_TARGET@export MACOSX_DEPLOYMENT_TARGET
 | |
| 
 | |
| PYTHONAPPSDIR=@FRAMEWORKINSTALLAPPSPREFIX@/$(PYTHONFRAMEWORK) $(VERSION)
 | |
| OBJECTS=FileSettings.o MyAppDelegate.o MyDocument.o PreferencesWindowController.o doscript.o main.o
 | |
| 
 | |
| install: Python\ Launcher.app
 | |
| 	test -d "$(DESTDIR)$(PYTHONAPPSDIR)" || mkdir -p "$(DESTDIR)$(PYTHONAPPSDIR)"
 | |
| 	-test -d "$(DESTDIR)$(PYTHONAPPSDIR)/Python Launcher.app" && rm -r "$(DESTDIR)$(PYTHONAPPSDIR)/Python Launcher.app"
 | |
| 	/bin/cp -r "Python Launcher.app" "$(DESTDIR)$(PYTHONAPPSDIR)"
 | |
| 	touch "$(DESTDIR)$(PYTHONAPPSDIR)/Python Launcher.app"
 | |
| 
 | |
| clean:
 | |
| 	rm -f *.o "Python Launcher"
 | |
| 	rm -rf "Python Launcher.app"
 | |
| 	rm -f Info.plist
 | |
| 
 | |
| Python\ Launcher.app:  Info.plist \
 | |
| 		Python\ Launcher $(srcdir)/../Icons/PythonLauncher.icns \
 | |
| 		$(srcdir)/../Icons/PythonSource.icns \
 | |
| 		$(srcdir)/../Icons/PythonCompiled.icns \
 | |
| 		$(srcdir)/factorySettings.plist
 | |
| 	rm -fr "Python Launcher.app"
 | |
| 	mkdir "Python Launcher.app"
 | |
| 	mkdir "Python Launcher.app/Contents"
 | |
| 	mkdir "Python Launcher.app/Contents/MacOS"
 | |
| 	mkdir "Python Launcher.app/Contents/Resources"
 | |
| 	cp "Python Launcher" "Python Launcher.app/Contents/MacOS"
 | |
| 	cp Info.plist  "Python Launcher.app/Contents"
 | |
| 	cp $(srcdir)/../Icons/PythonLauncher.icns  "Python Launcher.app/Contents/Resources"
 | |
| 	cp $(srcdir)/../Icons/PythonSource.icns  "Python Launcher.app/Contents/Resources"
 | |
| 	cp $(srcdir)/../Icons/PythonCompiled.icns  "Python Launcher.app/Contents/Resources"
 | |
| 	cp $(srcdir)/factorySettings.plist  "Python Launcher.app/Contents/Resources"
 | |
| 	cp -R $(srcdir)/English.lproj "Python Launcher.app/Contents/Resources"
 | |
| 
 | |
| FileSettings.o: $(srcdir)/FileSettings.m
 | |
| 	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/FileSettings.m
 | |
| 
 | |
| MyAppDelegate.o: $(srcdir)/MyAppDelegate.m
 | |
| 	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/MyAppDelegate.m
 | |
| 
 | |
| MyDocument.o: $(srcdir)/MyDocument.m
 | |
| 	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/MyDocument.m
 | |
| 
 | |
| PreferencesWindowController.o: $(srcdir)/PreferencesWindowController.m
 | |
| 	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/PreferencesWindowController.m
 | |
| 
 | |
| doscript.o: $(srcdir)/doscript.m
 | |
| 	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/doscript.m
 | |
| 
 | |
| main.o: $(srcdir)/main.m
 | |
| 	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/main.m
 | |
| 
 | |
| Python\ Launcher: $(OBJECTS)
 | |
| 	$(CC) $(LDFLAGS) -o "Python Launcher" $(OBJECTS) -framework AppKit -framework Carbon
 | |
| 
 | |
| Info.plist: $(srcdir)/Info.plist.in
 | |
| 	sed 's/%VERSION%/'"`$(RUNSHARED) $(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(srcdir)/Info.plist.in > Info.plist
 |