Parcourir la source

rm tup stuff I guess;

bjorn il y a 5 ans
Parent
commit
ad94b39591
3 fichiers modifiés avec 0 ajouts et 34 suppressions
  1. 0 8
      .gitignore
  2. 0 23
      Tupfile
  3. 0 3
      tup.config.sample

+ 0 - 8
.gitignore

@@ -1,8 +0,0 @@
-.tup
-tup.config
-*.o
-*.so
-*.dll
-*.lib
-*.exp
-build

+ 0 - 23
Tupfile

@@ -1,23 +0,0 @@
-CFLAGS += @(LUA_CFLAGS)
-LFLAGS += @(LUA_LFLAGS)
-
-CFLAGS += -I@(NATIVE_CLIENT_PATH)
-LFLAGS += -L@(NATIVE_CLIENT_PATH)
-
-ifeq (@(TUP_PLATFORM),win32)
-  LFLAGS += -llibdeepspeech.so.if
-  EXT = dll
-  OTHERS = lua-deepspeech.lib lua-deepspeech.exp
-else
-  # The 'undefined dynamic_lookup' stuff lets us link against Lua and DeepSpeech at runtime, so make
-  # sure your executable includes Lua and is otherwise able to find the DeepSpeech shared library.
-  # On windows, you just need to put the dlls next to the executable
-  LFLAGS += -undefined dynamic_lookup -ldeepspeech
-  EXT = so
-endif
-
-!compile = |> ^ CC %f^ clang $(CFLAGS) -c %f -o %o |>
-!link = |> ^ LN %o^ clang -shared -o %o $(LFLAGS) %f |>
-
-: lua_deepspeech.c |> !compile |> lua_deepspeech.o
-: lua_deepspeech.o |> !link |> lua-deepspeech.$(EXT) | $(OTHERS)

+ 0 - 3
tup.config.sample

@@ -1,3 +0,0 @@
-CONFIG_LUA_CFLAGS=`pkg-config --cflags lua5.1`
-CONFIG_LUA_LFLAGS=
-CONFIG_NATIVE_CLIENT_PATH=/path/to/native_client