From 37e273a024af43a4824ce7132f81d1a20c07e2a0 Mon Sep 17 00:00:00 2001 From: Hong Chen Date: Thu, 27 Jun 2024 10:34:44 -0500 Subject: [PATCH] Corrected .d file path for the clean target in Makefile.input file. (#1735) --- trick_source/sim_services/JITInputFile/JITInputFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trick_source/sim_services/JITInputFile/JITInputFile.cpp b/trick_source/sim_services/JITInputFile/JITInputFile.cpp index 7447b066..71e82f82 100644 --- a/trick_source/sim_services/JITInputFile/JITInputFile.cpp +++ b/trick_source/sim_services/JITInputFile/JITInputFile.cpp @@ -147,7 +147,7 @@ int Trick::JITInputFile::compile(std::string file_name) { // rule to clean outfile << "clean:" << std::endl ; outfile << "\t rm -f " << object_fullpath_name << " " << library_fullpath_name ; - outfile << " " << command_line_args_get_output_dir() << "/" << dep_file_name << std::endl << std::endl ; + outfile << " " << dep_file_name << std::endl << std::endl ; // dependency file outfile << "-include " << dep_file_name << std::endl ;