1
0
Mirror von https://github.com/tkuschel/bees.git synchronisiert 2026-05-08 04:59:37 +02:00

Makefile: rename OBJS to CRUCIBLE_OBJS

This paves the way for building different .so libs.

Signed-off-by: Kai Krakow <kai@kaishome.de>
Dieser Commit ist enthalten in:
Kai Krakow
2018-01-16 00:07:48 +01:00
Ursprung 4cfd5b43da
Commit bc1b67fde1
+2 -2
Datei anzeigen
@@ -3,7 +3,7 @@ TAG := $(shell git describe --always --dirty || echo UNKNOWN)
default: libcrucible.so
%.so: Makefile
OBJS = \
CRUCIBLE_OBJS = \
chatter.o \
cleanup.o \
crc64.o \
@@ -20,7 +20,7 @@ OBJS = \
uuid.o \
.version.o \
libcrucible.so: $(OBJS)
libcrucible.so: $(CRUCIBLE_OBJS)
include ../makeflags