star-meteo

Time varying meteorological data
git clone git://git.meso-star.fr/star-meteo.git
Log | Files | Refs | README | LICENSE

commit b304b4ff515c5eeeeb05dc61c65bbaeedf999e55
parent 9e308b19be652361e8aaa6c2c55527c355822a4b
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu, 13 Nov 2025 11:52:01 +0100

Correction of the static compilation of smeteo

The name of a target in the makefile was incorrect.

Diffstat:
MMakefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -47,11 +47,11 @@ $(LIBNAME_SHARED) B$(DEP) $(OBJ): config.mk .config $(LIBNAME_SHARED): $(OBJ) $(CC) $(CFLAGS_LIB) -o $@ $(OBJ) $(LDFLAGS_LIB) -$(LIBNAME_STATIC): libmeteo.o +$(LIBNAME_STATIC): libsmeteo.o $(AR) -rc $@ $? $(RANLIB) $@ -libsmsh.o: $(OBJ) +libsmeteo.o: $(OBJ) $(LD) -r $(OBJ) -o $@ $(OBJCOPY) $(OCPFLAGS) $@