1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 21:35:45 +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>
This commit is contained in:
Kai Krakow 2018-01-16 00:07:48 +01:00
parent 4cfd5b43da
commit bc1b67fde1

View File

@ -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