From bc1b67fde1c9313902dcd7e65eea509f4c35da78 Mon Sep 17 00:00:00 2001 From: Kai Krakow Date: Tue, 16 Jan 2018 00:07:48 +0100 Subject: [PATCH] Makefile: rename OBJS to CRUCIBLE_OBJS This paves the way for building different .so libs. Signed-off-by: Kai Krakow --- lib/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Makefile b/lib/Makefile index 9ac78bc..e466ada 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -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