diff options
author | Timothy Gu <timothygu99@gmail.com> | 2014-02-07 05:14:53 +0000 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2014-02-07 05:14:53 +0000 |
commit | 2ef1b924c158f86e06d62a5ece14e7db3e8470cf (patch) | |
tree | a9f9686475280b720b54938818d3b32d17b9c453 | |
parent | 3982987839821826b5c9fa2addc960692ee12f53 (diff) | |
download | dlfcn-win32-2ef1b924c158f86e06d62a5ece14e7db3e8470cf.tar.gz dlfcn-win32-2ef1b924c158f86e06d62a5ece14e7db3e8470cf.tar.bz2 dlfcn-win32-2ef1b924c158f86e06d62a5ece14e7db3e8470cf.zip |
Makefile: cosmetics
-rw-r--r-- | Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -4,18 +4,18 @@ | |||
4 | include config.mak | 4 | include config.mak |
5 | 5 | ||
6 | ifeq ($(BUILD_SHARED),yes) | 6 | ifeq ($(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 |
10 | endif | 10 | endif |
11 | ifeq ($(BUILD_STATIC),yes) | 11 | ifeq ($(BUILD_STATIC),yes) |
12 | TARGETS+=libdl.a | 12 | TARGETS += libdl.a |
13 | INSTALL+=static-install | 13 | INSTALL += static-install |
14 | endif | 14 | endif |
15 | ifeq ($(BUILD_MSVC),yes) | 15 | ifeq ($(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 |
19 | endif | 19 | endif |
20 | 20 | ||
21 | LIB_OBJS := dlfcn.o | 21 | LIB_OBJS := dlfcn.o |