1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-18 05:45: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 default: libcrucible.so
%.so: Makefile %.so: Makefile
OBJS = \ CRUCIBLE_OBJS = \
chatter.o \ chatter.o \
cleanup.o \ cleanup.o \
crc64.o \ crc64.o \
@ -20,7 +20,7 @@ OBJS = \
uuid.o \ uuid.o \
.version.o \ .version.o \
libcrucible.so: $(OBJS) libcrucible.so: $(CRUCIBLE_OBJS)
include ../makeflags include ../makeflags