Browse Source

Replace QuickJS submodule with a call to `git clone ...` in the Makefile.

tags/v1.3.0
Andrew Belt 5 years ago
parent
commit
960743b756
3 changed files with 4 additions and 6 deletions
  1. +0
    -3
      .gitmodules
  2. +4
    -2
      Makefile
  3. +0
    -1
      QuickJS

+ 0
- 3
.gitmodules View File

@@ -1,3 +0,0 @@
[submodule "QuickJS"]
path = QuickJS
url = https://github.com/JerrySievert/QuickJS.git

+ 4
- 2
Makefile View File

@@ -57,8 +57,10 @@ ifdef ARCH_WIN
QUICKJS_MAKE_FLAGS += CONFIG_WIN32=y
endif
$(quickjs):
cd QuickJS && $(MAKE) $(QUICKJS_MAKE_FLAGS)
cd QuickJS && $(MAKE) $(QUICKJS_MAKE_FLAGS) install
cd dep && git clone "https://github.com/JerrySievert/QuickJS.git"
cd dep/QuickJS && git checkout 807adc8ca9010502853d471bd8331cdc1d376b94
cd dep/QuickJS && $(MAKE) $(QUICKJS_MAKE_FLAGS)
cd dep/QuickJS && $(MAKE) $(QUICKJS_MAKE_FLAGS) install
endif

# LuaJIT


+ 0
- 1
QuickJS

@@ -1 +0,0 @@
Subproject commit 807adc8ca9010502853d471bd8331cdc1d376b94

Loading…
Cancel
Save