CC = cc -x
OBJ = main.o 

a.out:	$(OBJ)
	$(CC) $(OBJ)

test:	a.out
	a.out

clean:
	rm -f $(OBJ) *.ii

clobber:	clean
	rm -f a.out

