mirror of
https://github.com/djhackersdev/bemanitools-supplement.git
synced 2026-04-24 15:17:02 -05:00
16 lines
243 B
Makefile
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
|