aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-02-07 05:14:53 +0000
committerTimothy Gu <timothygu99@gmail.com>2014-02-07 05:14:53 +0000
commit2ef1b924c158f86e06d62a5ece14e7db3e8470cf (patch)
treea9f9686475280b720b54938818d3b32d17b9c453
parent3982987839821826b5c9fa2addc960692ee12f53 (diff)
downloaddlfcn-win32-2ef1b924c158f86e06d62a5ece14e7db3e8470cf.tar.gz
dlfcn-win32-2ef1b924c158f86e06d62a5ece14e7db3e8470cf.tar.bz2
dlfcn-win32-2ef1b924c158f86e06d62a5ece14e7db3e8470cf.zip
Makefile: cosmetics
-rw-r--r--Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 42fb310..377a0e2 100644
--- a/Makefile
+++ b/Makefile
@@ -4,18 +4,18 @@
4include config.mak 4include config.mak
5 5
6ifeq ($(BUILD_SHARED),yes) 6ifeq ($(BUILD_SHARED),yes)
7 TARGETS+=libdl.dll libdl.dll.a 7 TARGETS += libdl.dll libdl.dll.a
8 SHFLAGS+=-Wl,--out-implib,libdl.dll.a 8 SHFLAGS += -Wl,--out-implib,libdl.dll.a
9 INSTALL+=shared-install 9 INSTALL += shared-install
10endif 10endif
11ifeq ($(BUILD_STATIC),yes) 11ifeq ($(BUILD_STATIC),yes)
12 TARGETS+=libdl.a 12 TARGETS += libdl.a
13 INSTALL+=static-install 13 INSTALL += static-install
14endif 14endif
15ifeq ($(BUILD_MSVC),yes) 15ifeq ($(BUILD_MSVC),yes)
16 TARGETS+=libdl.lib 16 TARGETS += libdl.lib
17 SHFLAGS+=-Wl,--output-def,libdl.def 17 SHFLAGS += -Wl,--output-def,libdl.def
18 INSTALL+=lib-install 18 INSTALL += lib-install
19endif 19endif
20 20
21LIB_OBJS := dlfcn.o 21LIB_OBJS := dlfcn.o