COMPILADOR=arm-linux-gcc # OPCOES=-ansi -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations OPCOES=-O2 -Wall -Wstrict-prototypes all: main.o ir.o ir.o: ir.c $(COMPILADOR) $(OPCOES) -c ir.c main.o: main.c $(COMPILADOR) $(OPCOES) -o main main.c classes: make ir.o make main.o clean: rm -rf *.o *.core core