Skip to content

Commit

Permalink
Corrected .d file path for the clean target in Makefile.input file. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
hchen99 authored Jun 27, 2024
1 parent 7bc5312 commit 37e273a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trick_source/sim_services/JITInputFile/JITInputFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 ;

Expand Down

0 comments on commit 37e273a

Please sign in to comment.