This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

ghostty / Makefile
731 B 28 lines
1init: 2 @echo You probably want to run "zig build" instead. 3.PHONY: init 4 5# glad updates the GLAD loader. To use this, place the generated glad.zip 6# in this directory next to the Makefile, remove vendor/glad and run this target. 7# 8# Generator: https://gen.glad.sh/ 9glad: vendor/glad 10.PHONY: glad 11 12vendor/glad: vendor/glad/include/glad/gl.h vendor/glad/include/glad/glad.h 13 14vendor/glad/include/glad/gl.h: glad.zip 15 rm -rf vendor/glad 16 mkdir -p vendor/glad 17 unzip glad.zip -dvendor/glad 18 find vendor/glad -type f -exec touch '{}' + 19 20vendor/glad/include/glad/glad.h: vendor/glad/include/glad/gl.h 21 @echo "#include <glad/gl.h>" > $@ 22 23clean: 24 rm -rf \ 25 zig-out .zig-cache \ 26 macos/build \ 27 macos/GhosttyKit.xcframework 28.PHONY: clean