Skip to content

Commit

Permalink
Fix Makefile.in when we do not have libgc installed
Browse files Browse the repository at this point in the history
  • Loading branch information
egallesio committed Jul 20, 2024
1 parent 46518b7 commit 3f37130
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/C-module/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

# General variables which depends of the choices made when configure was run
# (compiler used, global compilation flags, ...)
BASEDIR=../..
CC=@CC@
CFLAGS=@CFLAGS@
CPPFLAGS=@CPPFLAGS@
Expand All @@ -16,6 +17,7 @@ SH_LOADER=@SH_LOADER@
SH_LOAD_FLAGS=@SH_LOAD_FLAGS@
SO=@SH_SUFFIX@
STKCFLAGS=@STKCFLAGS@
GCINC=@GCINC@

# ----------------------------------------------------------------------------

Expand Down Expand Up @@ -64,7 +66,7 @@ string-obfuscate-incl.c: $(SCHEME_SOURCE)
# Now we compile the C library, which will include string-obfuscate-incl.c.
string-obfuscate.o: $(C_SOURCE) $(C_INCL)
$(CC) $(CFLAGS) $(CPPFLAGS) $(STKCFLAGS) $(SH_COMP_FLAGS) \
-I$(STKLOS_SRC) \
$(GCINC) -I$(STKLOS_SRC) \
-c \
-o $(C_OBJ) \
$(C_SOURCE)
Expand Down

0 comments on commit 3f37130

Please sign in to comment.