Issue
I have a set of C code files named as: hmc.c hopping.c phi4.c and I have an 'infile' which contains value of parameters and a 'Makefile'. How do I run these set of files in Ubuntu? Previously in Windows I used gcc compiler with command 'gcc hmc.c hopping.c phi4.c' and then press Enter and then 'a infile' and that did the expected job but on Ubunut it isn't working..
Solution
Running the makefile should compile and give you an executable. You can do so by entering make
in the command line. Make sure you have it installed first.
Answered By - Justin Neer