diff options
author | Freya Murphy <freya@freyacat.org> | 2024-05-21 21:11:19 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-05-21 21:11:19 -0400 |
commit | 8d544d58af232e82c740cfcb271d20965020c133 (patch) | |
tree | b258dacda826fe8ca7d9c703588262a153b9f6d5 /src/web/lang/Makefile | |
parent | fix modals (diff) | |
download | xssbook2-8d544d58af232e82c740cfcb271d20965020c133.tar.gz xssbook2-8d544d58af232e82c740cfcb271d20965020c133.tar.bz2 xssbook2-8d544d58af232e82c740cfcb271d20965020c133.zip |
things
Diffstat (limited to '')
-rw-r--r-- | src/web/lang/Makefile | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/web/lang/Makefile b/src/web/lang/Makefile deleted file mode 100644 index fd4ca9c..0000000 --- a/src/web/lang/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -# -# en_CAT generator from en_US -# uwuify and awk required -# - -LANG_SRC = $(shell find en_US -type f) -LANG_OBJ = $(patsubst en_US/%,en_CAT/%,$(LANG_SRC)) - -.PHONY: all - -all: $(LANG_OBJ) - -$(LANG_OBJ): en_CAT/% : en_US/% - @printf "\033[35m UWU \033[0m%s\n" $< - @mkdir -p $(@D) - @./_bin/transpile.sh $< $@ - -clean: - @rm -fr "en_CAT" |