We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9b73e3 commit a7d4e3aCopy full SHA for a7d4e3a
Makefile
@@ -7,6 +7,7 @@ ta_lua = $(ta_src)/lua/src
7
CXX = g++
8
CXXFLAGS = -std=c++11 -pedantic -fPIC -Wall
9
LDFLAGS = -Wl,--retain-symbols-file -Wl,$(ta_src)/lua.sym
10
+WGET = wget -O $@
11
12
all: diff.so diff.dll diff-curses.dll diffosx.so
13
clean: ; rm -f *.o *.so *.dll
@@ -55,7 +56,7 @@ luadoc: init.lua
55
56
deps: diff_match_patch.h
57
58
diff_match_patch_zip = 7f95b37e554453262e2bcda830724fc362614103.zip
-$(diff_match_patch_zip): ; wget https://github.com/leutloff/diff-match-patch-cpp-stl/archive/$@
59
+$(diff_match_patch_zip): ; $(WGET) https://github.com/leutloff/diff-match-patch-cpp-stl/archive/$@
60
diff_match_patch.h: | $(diff_match_patch_zip) ; unzip -j $| "*/$@"
61
62
# Releases.
0 commit comments