]> git.tuebingen.mpg.de Git - osl.git/commitdiff
build: Simplify Makefile.
authorAndre Noll <maan@tuebingen.mpg.de>
Sun, 17 May 2020 19:43:42 +0000 (21:43 +0200)
committerAndre Noll <maan@tuebingen.mpg.de>
Sun, 7 Jun 2020 19:52:29 +0000 (21:52 +0200)
Now that only elf is supported we may get rid of the "format" variable
and the conditional.

Makefile

index ba10fd56fddffe2f3d23e87f7141a68335dd9176..ba61ef7769a258d2f2453d52fa5b374f54711553 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -50,40 +50,35 @@ LIBCFLAGS += -fvisibility=hidden
 libname := osl
 
 ifeq ($(uname_s),Linux)
-       format := elf
        LDFLAGS += -Wl,-soname,$(soname)
        # disallow undefined symbols
        LDFLAGS += -Wl,-z,defs
 endif
 ifeq ($(uname_s),NetBSD)
-       format := elf
        LDFLAGS += -Wl,-soname,$(soname)
 endif
 
 ifeq ($(uname_s),FreeBSD)
-       format := elf
        LDFLAGS += -Wl,-soname,$(soname)
 endif
 
-ifeq ($(format),elf)
-       # On ELf-based systems, the following conventions apply (see dhweeler's
-       # Program Library HOWTO):
-       #
-       # The soname has the prefix ``lib'', the name of the library, the
-       # phrase ``.so'', followed by a period and a version number that is
-       # incremented whenever the interface changes.
-       soname := lib$(libname).so.$(x)
-
-       # The real name adds to the soname a period, a minor number, another
-       # period, and the release number.
-       realname := $(soname).$(y).$(z)
-
-       # In addition, there's the name that the compiler uses when requesting
-       # a library, (I'll call it the ``linker name''), which is simply the
-       # soname without any version number.
-       linkername := lib$(libname).so
-       LDFLAGS += --shared
-endif
+# On ELf-based systems, the following conventions apply (see dhweeler's
+# Program Library HOWTO):
+#
+# The soname has the prefix ``lib'', the name of the library, the
+# phrase ``.so'', followed by a period and a version number that is
+# incremented whenever the interface changes.
+soname := lib$(libname).so.$(x)
+
+# The real name adds to the soname a period, a minor number, another
+# period, and the release number.
+realname := $(soname).$(y).$(z)
+
+# In addition, there's the name that the compiler uses when requesting
+# a library, (I'll call it the ``linker name''), which is simply the
+# soname without any version number.
+linkername := lib$(libname).so
+LDFLAGS += --shared
 
 all: $(realname) $(executables) $(man_pages)
 shared: $(realname)