mc-client-packs/Makefile

11 lines
163 B
Makefile
Raw Permalink Normal View History

DISTRELATIVE := ./dist
DIST := $(shell realpath $(DISTRELATIVE))
export DIST
build: src
clean: src
src:
$(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: all src