From 04cbde1633b6d30120a1bb3c5d7aa8ed2c06223e Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Wed, 14 Mar 2012 15:59:49 -0700 Subject: [PATCH] rename other *.c to *.cc userprog.c remains for now... --- Makefile | 2 +- libatomic.c => libatomic.cc | 0 libthreads.c => libthreads.cc | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename libatomic.c => libatomic.cc (100%) rename libthreads.c => libthreads.cc (100%) diff --git a/Makefile b/Makefile index 84a7b0a..9e50d84 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CC=g++ BIN=libthreads -SOURCE=libthreads.c schedule.cc libatomic.c userprog.c model.cc +SOURCE=libthreads.cc schedule.cc libatomic.cc userprog.c model.cc HEADERS=libthreads.h schedule.h common.h libatomic.h model.h FLAGS=-Wall diff --git a/libatomic.c b/libatomic.cc similarity index 100% rename from libatomic.c rename to libatomic.cc diff --git a/libthreads.c b/libthreads.cc similarity index 100% rename from libthreads.c rename to libthreads.cc -- 2.34.1