PROGS=init
CC=$(CROSS)gcc

init: init.c
	$(CC) -o $@ $<
	
clean:
	rm -f $(PROGS) *.o
	
