# Makefile to build the RPC Compiler from pascal via C

rpcc : rpcc.c
	cc -o rpcc rpcc.c
	chmod +x rpcc

rpcc.c : ../rpcc.p
	p2c ../rpcc.p -o rpcc.c



