
CFLAGS = -Wall -W -Wundef -g

all:
	gcc $(CFLAGS)  *.c -o ctmac_policy
clean:	
	rm -rf ctmac_policy	
	rm -rf ctmac_policy.bin
	
	
