1
0
mirror of https://github.com/Zygo/bees.git synced 2025-06-16 17:46:16 +02:00

Makefile: Some cleanups

Reorder and reformat some arguments so it looks more streamlined during
the build process.

Signed-off-by: Kai Krakow <kai@kaishome.de>
This commit is contained in:
Kai Krakow
2018-01-18 21:59:22 +01:00
parent d6b847db0d
commit 8a5f790a03
4 changed files with 12 additions and 13 deletions

View File

@ -20,7 +20,7 @@ CRUCIBLE_OBJS = \
uuid.o \
.version.o \
libcrucible.so: $(CRUCIBLE_OBJS)
libcrucible.so: $(CRUCIBLE_OBJS) -luuid
include ../makeflags
@ -42,4 +42,4 @@ include depends.mk
$(CXX) $(CXXFLAGS) -fPIC -o $@ -c $<
%.so:
$(CXX) $(LDFLAGS) -fPIC -o $@ $^ -shared -Wl,-soname,$@ -luuid
$(CXX) $(LDFLAGS) -fPIC -shared -Wl,-soname,$@ -o $@ $^