Updated to Forge 1.17.1-37.0.51 (issue #186). Enabled JEI plugin. Added Shingle Roof recipe from Deep Slate Stairs.
This commit is contained in:
parent
3621b15989
commit
e252a0464e
8 changed files with 70 additions and 32 deletions
20
Makefile
20
Makefile
|
@ -32,30 +32,30 @@ default: mod
|
|||
all: clean clean-all mod | install
|
||||
|
||||
mod:
|
||||
@echo "[1.16] Building mod using gradle ..."
|
||||
@echo "[1.17] Building mod using gradle ..."
|
||||
@$(GRADLE) build $(GRADLE_OPTS)
|
||||
|
||||
run:
|
||||
@echo "[1.16] Run client ..."
|
||||
@echo "[1.17] Run client ..."
|
||||
@$(GRADLE) runClient
|
||||
|
||||
assets:
|
||||
@echo "[1.16] Running asset generators ..."
|
||||
@echo "[1.17] Running asset generators ..."
|
||||
@$(TASK) assets
|
||||
|
||||
data:
|
||||
@echo "[1.16] Running data generators ..."
|
||||
@echo "[1.17] Running data generators ..."
|
||||
@$(TASK) datagen
|
||||
|
||||
clean:
|
||||
@echo "[1.16] Cleaning ..."
|
||||
@echo "[1.17] Cleaning ..."
|
||||
@rm -rf src/generated
|
||||
@rm -rf mcmodsrepo
|
||||
@rm -f build/libs/*
|
||||
@$(GRADLE) clean
|
||||
|
||||
clean-all:
|
||||
@echo "[1.16] Cleaning using gradle ..."
|
||||
@echo "[1.17] Cleaning using gradle ..."
|
||||
@rm -rf mcmodsrepo
|
||||
@rm -f dist/*
|
||||
@rm -rf run/logs/
|
||||
|
@ -70,11 +70,11 @@ mrproper: clean-all
|
|||
@rm -f .classpath
|
||||
|
||||
init:
|
||||
@echo "[1.16] Initialising eclipse workspace using gradle ..."
|
||||
@echo "[1.17] Initialising eclipse workspace using gradle ..."
|
||||
@$(GRADLE) eclipse
|
||||
|
||||
sanitize:
|
||||
@echo "[1.16] Running sanitising tasks ..."
|
||||
@echo "[1.17] Running sanitising tasks ..."
|
||||
@$(TASK) sanitize
|
||||
@$(TASK) sync-languages
|
||||
@$(TASK) version-check
|
||||
|
@ -88,11 +88,11 @@ start-server: install
|
|||
@$(TASK) start-server
|
||||
|
||||
dist-check:
|
||||
@echo "[1.16] Running dist checks ..."
|
||||
@echo "[1.17] Running dist checks ..."
|
||||
@$(TASK) dist-check
|
||||
|
||||
dist-files: clean-all init mod
|
||||
@echo "[1.16] Distribution files ..."
|
||||
@echo "[1.17] Distribution files ..."
|
||||
@mkdir -p dist
|
||||
@cp build/libs/$(MOD_JAR_PREFIX)* dist/
|
||||
@$(TASK) dist
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue