Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1# ocaml build system does not allow for parallel building of some 2# top-level targets like 'world', 'bootstrap', 'world.opt' as 3# then spawn '$(MAKE) all' subprocesses that conflict among each 4# other. But we would still like to run each target in parallel 5# individually. This file defines such entry points. 6 7# Re-export all existing phases to make 'make install' work as is. 8include Makefile 9 10nixpkgs_world: 11 $(MAKE) world 12 13nixpkgs_world_bootstrap_world_opt: 14 $(MAKE) world 15 $(MAKE) bootstrap 16 $(MAKE) world.opt