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'.)
11 lines
218 B
Makefile
11 lines
218 B
Makefile
|
|
all: dmake extracttests
|
|
|
|
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
|
|
|
|
|