Tools: fix Makefile
tools/ Makefile contained errmsg target whose source does not exist anymore. And it didn't have a target for extracttests. Removed the errmsg target and added new target for extracttests. Ticket: #2988 (In tools, make error: no rule to make target `errmsg.cpp', needed by `errmsg'.)
This commit is contained in:
parent
a71ce607a4
commit
a382a6938b
|
@ -1,8 +1,8 @@
|
|||
|
||||
all: errmsg dmake
|
||||
all: dmake extracttests
|
||||
|
||||
errmsg: errmsg.cpp
|
||||
g++ -Wall -pedantic -o errmsg errmsg.cpp
|
||||
extracttests: extracttests.cpp
|
||||
g++ -Wall -pedantic -o extracttests extracttests.cpp
|
||||
|
||||
dmake: dmake.cpp
|
||||
g++ -Wall -pedantic -o dmake -I../lib dmake.cpp ../cli/filelister.cpp ../lib/path.cpp
|
||||
|
|
Loading…
Reference in New Issue