CC=gcc CFLAGS=-O3 default: memcard OBJ=memcard.o %.o: %.c $(CC) $(CFLAGS) -c $< -o $@ clean: rm -f *.o memcard