htrdr

Solving radiative transfer in heterogeneous media
git clone git://git.meso-star.fr/htrdr.git
Log | Files | Refs | README | LICENSE

commit 5ff0d107222d7b63759bd01625a23d3cd1107795
parent a3dddbfb58df137dcc3d45257c6ede420990ee4c
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Tue, 31 Oct 2023 15:15:04 +0100

Remove an unnecessary option when compiling commands

The -I compiler option has been used to explicitly define the src
directory as a path where headers can be found. This option is actually
unnecessary, as include directories are retrieved from internal library
pc files.

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

diff --git a/Makefile b/Makefile @@ -70,11 +70,11 @@ all:\ # Inference rules for command build .SUFFIXES: .c .d .o .c.d: - @$(CC) $(CFLAGS_EXE) $(HTRDR_DPDC_CFLAGS) -Isrc -MM -MT "$(@:.d=.o) $@" \ + @$(CC) $(CFLAGS_EXE) $(HTRDR_DPDC_CFLAGS) -MM -MT "$(@:.d=.o) $@" \ $< -MF $@ .c.o: - $(CC) $(CFLAGS_EXE) $(HTRDR_DPDC_CFLAGS) -Isrc -c $< -o $@ + $(CC) $(CFLAGS_EXE) $(HTRDR_DPDC_CFLAGS) -c $< -o $@ ################################################################################ # Build the htrdr command