Writing a Makefile to generate the modified, assembly, relocatable and executable file from a C program – CentOS
I'm using CentOS to write a Makefile to generate these files from a C program: hello.i (Modified source program, text) hello.s (Assembly program, text) hello.o (Relocatable object program, binary) hello (Executable object program, binary) The idea is to open each…