bemanitools-supplement/GNUmakefile
2019-10-19 00:24:22 +02:00

16 lines
243 B
Makefile

V ?= @
BUILDDIR ?= build
gitrev := $(shell git rev-parse HEAD)
all:
# Generate a version file to identify the build
@echo "$(gitrev)" > version
.PHONY: clean
clean:
$(V)rm -rf $(BUILDDIR)
include Module.mk