From 4009cd73153a2ff71c1a22df87eeede528e75a4d Mon Sep 17 00:00:00 2001 From: Mark Hills Date: Mon, 5 Dec 2011 23:06:30 +0000 Subject: [PATCH] Rename --- .gitignore | 2 +- Makefile | 4 ++-- tempo.c => bpm.c | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename tempo.c => bpm.c (100%) diff --git a/.gitignore b/.gitignore index 51c17d9..bc2a95a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ *.o *.d -tempo +bpm diff --git a/Makefile b/Makefile index 3065349..e74a982 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,9 @@ CFLAGS += -Wall -MMD LDLIBS += -lm -tempo: tempo.o +bpm: bpm.o clean: - rm -f tempo *.o *.d + rm -f bpm *.o *.d -include *.d diff --git a/tempo.c b/bpm.c similarity index 100% rename from tempo.c rename to bpm.c