Commit 2ef1b924c158f86e06d62a5ece14e7db3e8470cf

Timothy Gu 2014-02-07T05:14:53

Makefile: cosmetics

diff --git a/Makefile b/Makefile
index 42fb310..377a0e2 100644
--- a/Makefile
+++ b/Makefile
@@ -4,18 +4,18 @@
 include config.mak
 
 ifeq ($(BUILD_SHARED),yes)
-	TARGETS+=libdl.dll libdl.dll.a
-	SHFLAGS+=-Wl,--out-implib,libdl.dll.a
-	INSTALL+=shared-install
+	TARGETS += libdl.dll libdl.dll.a
+	SHFLAGS += -Wl,--out-implib,libdl.dll.a
+	INSTALL += shared-install
 endif
 ifeq ($(BUILD_STATIC),yes)
-	TARGETS+=libdl.a
-	INSTALL+=static-install
+	TARGETS += libdl.a
+	INSTALL += static-install
 endif
 ifeq ($(BUILD_MSVC),yes)
-    TARGETS+=libdl.lib
-	SHFLAGS+=-Wl,--output-def,libdl.def
-	INSTALL+=lib-install
+    TARGETS += libdl.lib
+	SHFLAGS += -Wl,--output-def,libdl.def
+	INSTALL += lib-install
 endif
 
 LIB_OBJS := dlfcn.o