Skip to content
Snippets Groups Projects
Commit 8d9a99b2 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#9515 - Fix .lo file generation during build process

parent ded462bc
No related branches found
No related tags found
1 merge request!308ITS#9515 - Fix .lo file generation during build process
Pipeline #2391 canceled
......@@ -49,10 +49,12 @@ sp :=
dir := tests
include $(dir)/Rules.mk
%.lo: %.c
.SUFFIXES: .c .o .lo
.c.lo:
$(LIBTOOL) --mode=compile $(CC) $(OPT) $(DEFS) $(INCS) -c $<
%.la: %.lo
datamorph.la: datamorph.lo
$(LIBTOOL) --mode=link $(CC) $(OPT) -version-info $(LTVER) \
-rpath $(moduledir) -module -o $@ $? $(LIBS)
......
......@@ -49,10 +49,12 @@ sp :=
dir := tests
include $(dir)/Rules.mk
%.lo: %.c
.SUFFIXES: .c .o .lo
.c.lo:
$(LIBTOOL) --mode=compile $(CC) $(OPT) $(DEFS) $(INCS) -c $<
%.la: %.lo
variant.la: variant.lo
$(LIBTOOL) --mode=link $(CC) $(OPT) -version-info $(LTVER) \
-rpath $(moduledir) -module -o $@ $? $(LIBS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment