mirror of https://github.com/yandex/odyssey.git
sonata: add makefiles
This commit is contained in:
parent
8753b441e3
commit
2e10945bda
|
@ -0,0 +1,16 @@
|
|||
# libsonata makefile
|
||||
#
|
||||
CC = gcc
|
||||
RM = rm
|
||||
CFLAGS = -I. -Wall -g -O0 -pedantic
|
||||
LFLAGS =
|
||||
OBJECTS =
|
||||
LIB = libsonata.a
|
||||
|
||||
all: clean $(LIB)
|
||||
$(LIB): $(OBJECTS)
|
||||
$(AR) cr $(LIB) $(OBJECTS)
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) -c $<
|
||||
clean:
|
||||
$(RM) -f $(OBJECTS) $(TEST) $(LIB)
|
Loading…
Reference in New Issue