mc-server-packs/Makefile

11 lines
153 B
Makefile
Raw Permalink Normal View History

2024-07-26 23:28:20 +00:00
DISTRELATIVE := ./dist
DIST := $(shell realpath $(DISTRELATIVE))
export DIST
build: src
clean: src
src:
$(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: all src