#---------------------------------------------------------------# # Makefile for the 'ctran' and 'proc-incl' programs that are # # used by the 'cmunge' tool. # #---------------------------------------------------------------# CC = cc -O # ...substitute your C compiler command here all: bin/ctran bin/proc-incl bin/ctran: src/ctran.c $(CC) src/ctran.c -o bin/ctran bin/proc-incl: src/proc-incl.c $(CC) src/proc-incl.c -o bin/proc-incl