Skip to content

Commit f9f3382

Browse files
committed
update dmake
1 parent 9871aa7 commit f9f3382

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ check: all
370370
checkcfg: cppcheck validateCFG
371371
./test/cfg/runtests.sh
372372

373-
dmake: tools/dmake/dmake.o cli/filelister.o $(libcppdir)/pathmatch.o $(libcppdir)/path.o $(libcppdir)/utils.o externals/simplecpp/simplecpp.o $(libcppdir)/filesettings.o
373+
dmake: tools/dmake/dmake.o cli/filelister.o $(libcppdir)/pathmatch.o $(libcppdir)/path.o $(libcppdir)/utils.o externals/simplecpp/simplecpp.o
374374
$(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS)
375375

376376
run-dmake: dmake

tools/dmake/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ endforeach()
1313
add_executable(dmake EXCLUDE_FROM_ALL
1414
dmake.cpp
1515
${CMAKE_SOURCE_DIR}/cli/filelister.cpp
16-
${CMAKE_SOURCE_DIR}/lib/filesettings.cpp
1716
${srcs_tools}
1817
$<TARGET_OBJECTS:simplecpp_objs>
1918
)

tools/dmake/dmake.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ int main(int argc, char **argv)
755755
fout << "\t./testrunner -q\n\n";
756756
fout << "checkcfg:\tcppcheck validateCFG\n";
757757
fout << "\t./test/cfg/runtests.sh\n\n";
758-
fout << "dmake:\ttools/dmake/dmake.o cli/filelister.o $(libcppdir)/pathmatch.o $(libcppdir)/path.o $(libcppdir)/utils.o externals/simplecpp/simplecpp.o $(libcppdir)/filesettings.o\n";
758+
fout << "dmake:\ttools/dmake/dmake.o cli/filelister.o $(libcppdir)/pathmatch.o $(libcppdir)/path.o $(libcppdir)/utils.o externals/simplecpp/simplecpp.o\n";
759759
fout << "\t$(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS)\n\n";
760760
fout << "run-dmake: dmake\n";
761761
fout << "\t./dmake" << (release ? " --release" : "") << "\n\n"; // Make CI in release builds happy

0 commit comments

Comments
 (0)