solstice-pp

Post-processing utilities for the solstice app
git clone git://git.meso-star.com/solstice-pp.git
Log | Files | Refs | README | LICENSE

commit ec3d09353b6582420337a37d237cbfb236614e73
parent 49ba84b9cffc87b4ca2fc99d48601be133c0f558
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Tue, 23 Jun 2026 16:03:51 +0200

Create a src directory to host source files

Diffstat:
MMakefile | 8++++++--
Rsolmaps.c -> src/solmaps.c | 0
Rsolpaths.c -> src/solpaths.c | 0
Rsolpp.c -> src/solpp.c | 0
Rsolpp.h -> src/solpp.h | 0
Rsolppraw.c -> src/solppraw.c | 0
6 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -18,7 +18,11 @@ include config.mk -SRC = solmaps.c solpp.c solppraw.c solpaths.c +SRC =\ + src/solmaps.c \ + src/solpp.c \ + src/solppraw.c \ + src/solpaths.c PROG = $(SRC:.c=) PROJECTS = themis cyl @@ -35,7 +39,7 @@ clean: rm -rf $(PROG) for i in $(PROJECTS); do $(MAKE) -C "$${i}" clean; done -$(PROG): solpp.h +$(PROG): src/solpp.h $(CC) -o $@ $(CFLAGS) $@.c run: $(PROJECTS) diff --git a/solmaps.c b/src/solmaps.c diff --git a/solpaths.c b/src/solpaths.c diff --git a/solpp.c b/src/solpp.c diff --git a/solpp.h b/src/solpp.h diff --git a/solppraw.c b/src/solppraw.c