
CC = gcc -Wall

all: cif_api.o 

cif_api.o: cif_api.c 
	$(CC)  -c -g cif_api.c 

clean: 
	rm -f *.o 
