among-sus/Makefile

12 lines
206 B
Makefile
Raw Normal View History

.POSIX:
2020-12-06 13:36:14 +00:00
CFLAGS = $$(git rev-parse HEAD &>/dev/null && echo -DVERSION="\"$$(git rev-parse --short HEAD)\"")
all: among-sus
among-sus: main.o
$(CC) $(LDFLAGS) -o $@ main.o
clean:
2020-12-06 13:36:14 +00:00
rm -f among-sus main.o