File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ all: $(TARGET)
148148compile : $(OBJ_FILES )
149149
150150# Loadable library
151- $(TARGET ) : compile $(DEF_FILE ) $(LLAMA_LIBS ) $(WHISPER_LIBS ) $(MINIAUDIO_LIBS )
151+ $(TARGET ) : $(DEF_FILE ) $(LLAMA_LIBS ) $(WHISPER_LIBS ) $(MINIAUDIO_LIBS )
152152 $(CXX ) $(OBJ_FILES ) $(DEF_FILE ) -o $@ $(LDFLAGS )
153153ifeq ($(PLATFORM ) ,windows)
154154 # Generate import library for Windows
@@ -165,17 +165,17 @@ test: $(TARGET)
165165 $(SQLITE3 ) " :memory:" -cmd " .bail on" " .load ./dist/ai" " SELECT ai_version();"
166166
167167# Build submodules (only after successful compilation)
168- build/llama.cpp.stamp : compile
168+ build/llama.cpp.stamp : | compile
169169 cmake -B $(BUILD_LLAMA ) $(LLAMA_OPTIONS ) $(LLAMA_DIR )
170170 cmake --build $(BUILD_LLAMA ) --config Release -- -j$(CPUS )
171171 touch $@
172172
173- build/whisper.cpp.stamp : compile
173+ build/whisper.cpp.stamp : | compile
174174 cmake -B $(BUILD_WHISPER ) $(WHISPER_OPTIONS ) $(WHISPER_DIR )
175175 cmake --build $(BUILD_WHISPER ) --config Release -- -j$(CPUS )
176176 touch $@
177177
178- build/miniaudio.stamp : compile
178+ build/miniaudio.stamp : | compile
179179 cmake -B $(BUILD_MINIAUDIO ) -DMINIAUDIO_BUILD_EXAMPLES=OFF -DMINIAUDIO_BUILD_TESTS=OFF $(MINIAUDIO_DIR )
180180 cmake --build $(BUILD_MINIAUDIO ) --config Release -- -j$(CPUS )
181181 touch $@
You can’t perform that action at this time.
0 commit comments