mirror of https://github.com/yandex/odyssey.git
odissey: link with soprano library
This commit is contained in:
parent
85952b5ab1
commit
b431726520
|
@ -4,8 +4,10 @@ CC = gcc
|
|||
RM = rm
|
||||
FLINT_CFLAGS = -I../lib/flint/lib
|
||||
FLINT_LFLAGS = ../lib/flint/lib/libflint.a -luv
|
||||
CFLAGS = -I. -Wall -O0 -g -pedantic $(FLINT_CFLAGS)
|
||||
LFLAGS = $(FLINT_LFLAGS)
|
||||
SOPRANO_CFLAGS = -I../lib/soprano/lib
|
||||
SOPRANO_LFLAGS = ../lib/soprano/lib/libsoprano.a
|
||||
CFLAGS = -I. -Wall -O0 -g -pedantic $(FLINT_CFLAGS) $(SOPRANO_CFLAGS)
|
||||
LFLAGS = $(FLINT_LFLAGS) $(SOPRANO_LFLAGS)
|
||||
OBJECTS = od_log.o \
|
||||
od_lex.o \
|
||||
od_scheme.o \
|
||||
|
|
Loading…
Reference in New Issue