From 7d71827c25ff1ab47c03aaa26f63a9a754b3d549 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Sun, 3 Jul 2022 11:24:05 -0400 Subject: Condensed solar system csv files into one. Add argument parser for help and different systems --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8176c1f..823791d 100644 --- a/Makefile +++ b/Makefile @@ -7,10 +7,12 @@ ODIR := $(PWD)/bin SFILES := $(wildcard $(SDIR)/*.cpp) OFILES := $(patsubst $(SDIR)/%.cpp,$(ODIR)/%.o,$(SFILES)) -OUT := spacelike +OUT := systemviewer +GIT_VERSION := "$(shell git describe --abbrev=4 --dirty --always --tags)" CC := g++ CFLAGS := -std=c++20 -Wall -Wextra -MP -MD -I$(IDIR) -g -Wno-unused +CFLAGS += -DVERSION=\"$(GIT_VERSION)\" -include $(SDIR/:.cpp=.d) -- cgit v1.2.1