1#---------------------------------------------------------------#
2# Makefile for the 'ctran' and 'proc-incl' programs that are	#
3# used by the 'cmunge' tool.					#
4#---------------------------------------------------------------#
5CC = cc -O		# ...substitute your C compiler command here
6
7all:	bin/ctran  bin/proc-incl
8
9bin/ctran:	src/ctran.c
10	$(CC) src/ctran.c -o bin/ctran
11
12bin/proc-incl:	src/proc-incl.c
13	$(CC) src/proc-incl.c -o bin/proc-incl
14