diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-05-03 23:42:38 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-05-03 23:42:38 +0900 |
| commit | f3599bb4423790b674b33ec340433a234965058a (patch) | |
| tree | fcbf3c9a02b8eb42dfa1b68ce1a66aa930ec14fe /tools | |
| parent | 050cb3d70ec6bad9e1366cd69ed7273397b5b840 (diff) | |
| download | mruby-f3599bb4423790b674b33ec340433a234965058a.tar.gz mruby-f3599bb4423790b674b33ec340433a234965058a.zip | |
library file name renamed to libmruby.a on all platforms
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/mrbc/Makefile | 4 | ||||
| -rw-r--r-- | tools/mruby/Makefile | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/tools/mrbc/Makefile b/tools/mrbc/Makefile index 282032c76..1137baa03 100644 --- a/tools/mrbc/Makefile +++ b/tools/mrbc/Makefile @@ -5,13 +5,11 @@ # extension of the executable-file is modifiable(.exe .out ...) BASEDIR := ../../src TARGET := ../../bin/mrbc -LIB := ../../lib/mruby +LIBR := ../../lib/libmruby.a ifeq ($(OS),Windows_NT) EXE := $(TARGET).exe -LIBR := $(LIB).lib else EXE := $(TARGET) -LIBR := $(LIB).a endif EXCEPT1 := OBJ0 := $(patsubst %.c,%.o,$(wildcard $(BASEDIR)/../tools/mrbc/*.c)) diff --git a/tools/mruby/Makefile b/tools/mruby/Makefile index 7b7eb83be..19140aabb 100644 --- a/tools/mruby/Makefile +++ b/tools/mruby/Makefile @@ -5,13 +5,11 @@ # extension of the executable-file is modifiable(.exe .out ...) BASEDIR = ../../src TARGET := ../../bin/mruby -LIB := ../../lib/mruby +LIBR := ../../lib/libmruby.a ifeq ($(OS),Windows_NT) EXE := $(TARGET).exe -LIBR := $(LIB).lib else EXE := $(TARGET) -LIBR := $(LIB).a endif OBJ0 := $(patsubst %.c,%.o,$(wildcard $(BASEDIR)/../tools/mruby/*.c)) #OBJ1 := $(patsubst %.c,%.o,$(filter-out $(EXCEPT1),$(wildcard $(BASEDIR)/*.c))) |
