If you are taking a programming course (CPSC211) or similar course, you know its a pain to type gcc source.c -o binary and then do ./source or javac source.java and then java source. If you want to skip this method the professional and the correct way, you would use make and write a Makefile for each project. Since most of the assignments in the class involve using a single source file, I made a small bash script to take care of this problem for us.
Comments |
Posted February 02, 2006