From 0aa44e7e9f8937680b036d849facf2b43047fca9 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 7 Oct 2023 14:55:31 -0700 Subject: [PATCH] Makefile doesn't need to init submodules anymore --- Makefile | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 5db8f24ff..b469ff443 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,7 @@ -# Init initializes the repo for development. init: - git submodule update --init --recursive + @echo You probably want to run "zig build" instead. .PHONY: init -# Slightly cursed way that we setup a dev version of this locally on NixOS. -dev/install: - zig build -Dcpu=baseline -Doptimize=ReleaseFast - if [ -f "/etc/NIXOS" ]; then patchelf --set-rpath "${LD_LIBRARY_PATH}" zig-out/bin/ghostty; fi - mkdir -p ${HOME}/bin - cp zig-out/bin/ghostty ${HOME}/bin/devtty -.PHONY: dev/install - # glad updates the GLAD loader. To use this, place the generated glad.zip # in this directory next to the Makefile, remove vendor/glad and run this target. #