# This makefile is meant to parse with both normal `make' and `nmake' # (on Windows). On Windows, prefix each target with `win32-'. # The targets here do not use dependencies (mostly), so it's a strange # use of `make'. Really, this makefile is an alternative to a pile of # scripts, where each target plays the role of a script. # The main targets are # # in-place = build in "racket" with all packages in development mode # # core = build in "racket" only (i.e., first step of `in-place') # # server = build core, build packages listed in $(PKGS), start # server at port 9440 # # client = build core, create an installer with $(PKGS) with the help # of $(SERVER); result is recorded in "bundle/installer.txt" # ------------------------------------------------------------ # In-place build PLAIN_RACKET = racket/bin/racket WIN32_PLAIN_RACKET = racket\racket MACOSX_CHECK = $(PLAIN_RACKET) -I racket/base -e '(case (system-type) [(macosx) (exit 0)] [else (exit 1)])' in-place: $(MAKE) core if $(MACOSX_CHECK) ; then $(MAKE) native-from-git ; fi $(MAKE) pkg-links $(PLAIN_RACKET) -N raco -l- raco setup $(PLT_SETUP_OPTIONS) win32-in-place: $(MAKE) win32-core $(MAKE) win32-pkg-links $(WIN32_PLAIN_RACKET) -N raco -l- raco setup $(PLT_SETUP_OPTIONS) # ------------------------------------------------------------ # Core build # During this step, we use a configuration file that indicates # an empty set of link files, so that any installation-wide # links or packages are ignored during the core build. core: mkdir -p build/config echo '#hash((links-search-files . ()))' > build/config/config.rktd mkdir -p racket/src/build $(MAKE) racket/src/build/Makefile cd racket/src/build; $(MAKE) reconfigure cd racket/src/build; $(MAKE) SELF_RACKET_FLAGS="-G `cd ../../../build/config; pwd`" cd racket/src/build; $(MAKE) install SELF_RACKET_FLAGS="-G `cd ../../../build/config; pwd`" win32-core: IF NOT EXIST build\config cmd /c mkdir mkdir -p build\config cmd /c echo #hash((links-search-files . ())) > build\config\config.rktd cmd /c racket\src\worksp\build-at racket\src\worksp ..\..\..\build\config racket/src/build/Makefile: racket/src/configure racket/src/Makefile.in cd racket/src/build; ../configure # ------------------------------------------------------------ # Configuration options for building installers # Packages to include in a distribution: PKGS = main-distribution # Catalog for sources and native packages; use "local" to bootstrap # from package directories (in the same directory as this makefile) # plus the GitHub repository of raw native libraries. SRC_CATALOG = local # Server for built packages (i.e., the host where you'll run the # server): SERVER = localhost # Set to "--release" to created release-mode installers (as opposed to # snapshot installers): RELEASE_MODE = # Human-readable name and installation-directory name for the # generated installers: DIST_NAME = Racket DIST_DIR = racket # Configuration of clients to run for a build farm: FARM_CONFIG = build/farm-config.rktd # A command to run after the server has started; normally set by # the `farm' target: SERVE_DURING_CMD = # ------------------------------------------------------------ # Helpers # Needed for any distribution: REQUIRED_PKGS = racket-lib # Packages needed for building distribution: DISTRO_BUILD_PKGS = distro-build # To bootstrap, we use some "distro-build" libraries directly, # instead of from an installed package: DISTBLD = pkgs/distro-build # Helper macros: ADDON = build/user RACKET = racket/bin/racket -A "$(ADDON)" RACO = racket/bin/racket -A "$(ADDON)" -N raco -l- raco WIN32_RACKET = racket\racket -A "$(ADDON)" WIN32_RACO = racket\racket -A "$(ADDON)" -N raco -l- raco USER_AUTO_OPTIONS = --scope user --skip-installed --deps search-auto LOCAL_USER_AUTO = --catalog build/local/catalog $(USER_AUTO_OPTIONS) SOURCE_USER_AUTO = --catalog "$(SRC_CATALOG)" $(USER_AUTO_OPTIONS) REMOTE_USER_AUTO = --catalog http://$(SERVER):9440/ $(USER_AUTO_OPTIONS) REMOTE_INST_AUTO = --catalog http://$(SERVER):9440/ --scope installation --deps search-auto # ------------------------------------------------------------ # Linking all packages (development mode; not an installer build) pkg-links: $(PLAIN_RACKET) -U -G build/config racket/src/link-all.rkt ++dir pkgs ++dir build/native-pkgs $(PKGS) win32-pkg-links: $(MAKE) pkg-links PLAIN_RACKET="$(WIN32_PLAIN_RACKET)" # ------------------------------------------------------------ # On a server platform (for an installer build): server: $(MAKE) core $(MAKE) server-from-core server-from-core: if [ "$(EEAPP)" = '' ] ; then $(MAKE) build-from-local ; else $(MAKE) build-from-catalog ; fi $(MAKE) origin-collects $(MAKE) built-catalog $(MAKE) built-catalog-server # Boostrap mode: make packages from local directories: build-from-local: $(MAKE) local-catalog $(MAKE) local-build # Set up a local catalog (useful on its own): local-catalog: $(MAKE) native-from-git $(MAKE) native-catalog $(MAKE) local-source-catalog # Get pre-built native libraries from the repo: native-from-git: mkdir -p build if [ ! -d build/native-pkgs ]; then cd build; git clone git://github.com/plt/libs.git native-pkgs ; fi cd build/native-pkgs; git pull # Create packages and a catalog for all native libraries: native-catalog: $(RACKET) $(DISTBLD)/pack-native.rkt # Create a catalog for all packages in this directory: local-source-catalog: $(RACKET) $(DISTBLD)/catalog-local.rkt # Clear out a package build in "build/user", and then install # packages: local-build: rm -rf build/user $(MAKE) packages-from-local # Install packages from the source copies in this directory. The # packages are installed in user scope, but we set the add-on # directory to "build/user", so that we don't affect the actual # current user's installation (and to a large degree we're insulated # from it): packages-from-local: $(RACO) pkg install $(LOCAL_USER_AUTO) $(PKGS) $(REQUIRED_PKGS) $(DISTRO_BUILD_PKGS) $(RACO) setup --avoid-main # Install packages from a source catalog (as an alternative to # `build-from-local'), where the source catalog is specified as # `SRC_CATALOG': build-from-catalog: $(RACO) pkg install $(SOURCE_USER_AUTO) $(PKGS) $(REQUIRED_PKGS) $(DISTRO_BUILD_PKGS) $(RACO) setup --avoid-main # Although a client will build its own "collects", pack up the # server's version to be used by each client, so that every client has # exactly the same bytecode (which matters for SHA1-based dependency # tracking): origin-collects: $(RACKET) -l distro-build/pack-collects # Now that we've built packages from local sources, create "built" # versions of the packages from the installation into "build/user": built-catalog: $(RACKET) -l distro-build/pack-built # Run a catalog server to provide pre-built packages, as well # as the copy of the server's "collects" tree: built-catalog-server: if [ -d ".git" ]; then git update-server-info ; fi $(RACKET) -l distro-build/serve-catalog $(SERVE_DURING_CMD) # Demonstrate how a catalog server for binary packages works, # which involves creating package archives in "binary" mode # instead of "built" mode: binary-catalog: $(RACKET) -l- distro-build/pack-built --mode binary binary-catalog-server: $(RACKET) -l- distro-build/serve-catalog --mode binary # ------------------------------------------------------------ # On each supported platform (for an installer build): # # The `client' and `win32-client' targets are also used by # `distro-buid/drive-clients', which is in turn run by the # `farm' target. # # For a non-Windows machine, if "build/drive" exists, then # keep the "build/user" directory on the grounds that the # client is the same as the server. client: if [ ! -d build/drive ] ; then rm -rf build/user ; fi $(MAKE) core $(MAKE) distro-build-from-server $(MAKE) bundle-from-server $(MAKE) installer-from-bundle COPY_ARGS = SERVER=$(SERVER) PKGS="$(PKGS)" RELEASE_MODE=$(RELEASE_MODE) DIST_NAME="$(DIST_NAME)" DIST_DIR=$(DIST_DIR) win32-client: IF EXIST build\user cmd /c rmdir /S /Q build\user $(MAKE) win32-core $(COPY_ARGS) $(MAKE) win32-distro-build-from-server $(COPY_ARGS) $(MAKE) win32-bundle-from-server $(COPY_ARGS) $(MAKE) win32-installer-from-bundle $(COPY_ARGS) # Install the "distro-build" package from the server into # a local build: distro-build-from-server: $(RACO) pkg install $(REMOTE_USER_AUTO) distro-build # Copy our local build into a "bundle/racket" build, dropping in the # process things that should not be in an installer (such as the "src" # directory). Then, replace the "collects" tree with the one from the # server. Finally, install pre-built packages from the server: bundle-from-server: rm -rf bundle mkdir -p bundle/racket $(RACKET) -l setup/unixstyle-install bundle racket bundle/racket $(RACKET) -l distro-build/unpack-collects http://$(SERVER):9440/ bundle/racket/bin/raco pkg install $(REMOTE_INST_AUTO) $(PKGS) $(REQUIRED_PKGS) UPLOAD = --upload http://$(SERVER):9440/ # Create an installer from the build (with installed packages) that's # in "bundle/racket": installer-from-bundle: $(RACKET) -l- distro-build/installer $(UPLOAD) $(RELEASE_MODE) "$(DIST_NAME)" $(DIST_DIR) win32-distro-build-from-server: $(WIN32_RACO) pkg install $(REMOTE_USER_AUTO) distro-build win32-bundle: IF EXIST bundle cmd /c rmdir /S /Q bundle cmd /c mkdir bundle\racket $(WIN32_RACKET) -l setup/unixstyle-install bundle racket bundle\racket $(WIN32_RACKET) -l setup/winstrip bundle\racket $(WIN32_RACKET) -l setup/winvers-change bundle\racket win32-bundle-from-server: $(MAKE) win32-bundle $(COPY_ARGS) $(WIN32_RACKET) -l distro-build/unpack-collects http://$(SERVER):9440/ bundle\racket\raco pkg install $(REMOTE_INST_AUTO) $(REQUIRED_PKGS) bundle\racket\raco pkg install $(REMOTE_INST_AUTO) $(PKGS) win32-installer-from-bundle: $(WIN32_RACKET) -l- distro-build/installer $(UPLOAD) $(RELEASE_MODE) "$(DIST_NAME)" $(DIST_DIR) # ------------------------------------------------------------ # Drive installer build: DRIVE_ARGS = $(RELEASE_MODE) "$(FARM_CONFIG)" $(SERVER) "$(PKGS)" "$(DIST_NAME)" $(DIST_DIR) DRIVE_CMD = $(RACKET) -l- distro-build/drive-clients $(DRIVE_ARGS) # Full server build and clients drive, based on `FARM_CONFIG': farm: $(MAKE) server SERVE_DURING_CMD="$(DRIVE_CMD)" # Server is already built; start it and drive clients: built-farm: $(MAKE) built-catalog-server SERVE_DURING_CMD="$(DRIVE_CMD)" # Just the clients, assuming server is already running: drive-clients: $(DRIVE_CMD)