diff options
Diffstat (limited to 'src/web/lang/Makefile')
-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" |