From ab35c6b518b0a07aeacda1ca4be91bcdca795089 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Thu, 21 Oct 2010 10:00:41 -0300 Subject: [PATCH] Prepare abstraction of C2 communication. - f32x/c2.c: renamed to c2-om.c - f32x/Makefile (OBJS): changed c2.o to c2-om.o --- f32x/Makefile | 2 +- f32x/{c2.c => c2-om.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename f32x/{c2.c => c2-om.c} (100%) diff --git a/f32x/Makefile b/f32x/Makefile index b66cf7f..3db9ae9 100644 --- a/f32x/Makefile +++ b/f32x/Makefile @@ -19,7 +19,7 @@ LDFLAGS= PREFIX=/usr NAME=f32x -OBJS=f32x.o flash.o c2.o gpio.o rt.o boundary.o +OBJS=f32x.o flash.o c2-om.o gpio.o rt.o boundary.o .PHONY: all install uninstall clean depend spotless diff --git a/f32x/c2.c b/f32x/c2-om.c similarity index 100% rename from f32x/c2.c rename to f32x/c2-om.c