Makefile (298B)
1 2 all: fake 3 @echo "you don't need to build anything." 4 5 tags: fake 6 ctags damus.js nostr.js > $@ 7 8 emojiregex: fake 9 @curl -sL 'https://raw.githubusercontent.com/mathiasbynens/emoji-test-regex-pattern/main/dist/latest/javascript.txt' 10 11 dist: 12 rsync -avzP ./ charon:/www/damus.io/webv2/ 13 14 15 .PHONY: fake