Browse Source

actually build the shared lib on illumos

tags/v0.2.16.rc1
Lauri Tirkkonen 9 years ago
parent
commit
7ba1d9b9ca
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      Makefile
  2. +1
    -1
      exports/Makefile

+ 1
- 1
Makefile View File

@@ -85,7 +85,7 @@ endif

shared :
ifndef NO_SHARED
ifeq ($(OSNAME), Linux)
ifeq ($(OSNAME), $(filter $(OSNAME),Linux SunOS))
@$(MAKE) -C exports so
@-ln -fs $(LIBSONAME) $(LIBPREFIX).so
@-ln -fs $(LIBSONAME) $(LIBPREFIX).so.$(MAJOR_VERSION)


+ 1
- 1
exports/Makefile View File

@@ -110,7 +110,7 @@ endif
dllinit.$(SUFFIX) : dllinit.c
$(CC) $(CFLAGS) -c -o $(@F) -s $<

ifeq ($(OSNAME), Linux)
ifeq ($(OSNAME), $(filter $(OSNAME),Linux SunOS))

so : ../$(LIBSONAME)



Loading…
Cancel
Save