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>
Dieser Commit ist enthalten in:
Kai Krakow
2018-01-19 01:50:13 +01:00
Ursprung d6b847db0d
Commit 8a5f790a03
4 geänderte Dateien mit 12 neuen und 13 gelöschten Zeilen
+2 -2
Datei anzeigen
@@ -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 $@ $^