~martijnbraam/among-sus

a663003bc52cc81e8fad763a308caa1cb9f03632 — Eyal Sawady 3 years ago 584ddb3
Makefile: remove -DVERSION="unknown"

This is handled by the #ifndef in main.c
1 files changed, 2 insertions(+), 2 deletions(-)

M Makefile
M Makefile => Makefile +2 -2
@@ 2,8 2,8 @@
all:
	$(CC) -o among-sus $(CFLAGS) \
		$$(git rev-parse --short HEAD >/dev/null 2>/dev/null && \
		printf -- '-DVERSION="%s"' "$$(git rev-parse --short HEAD)" || \
		printf -- '-DVERSION="unknown"') main.c $(LDFLAGS)
		printf -- '-DVERSION="%s"' "$$(git rev-parse --short HEAD)") \
		main.c $(LDFLAGS)

clean:
	rm -f among-sus