From bb0eacb39cec00fc9dbbb4d08e5d1ebf28b47e3b Mon Sep 17 00:00:00 2001 From: Jan-Piet Mens Date: Tue, 29 Sep 2015 09:20:09 +0200 Subject: [PATCH] rename file --- Makefile | 6 +++--- ot-recorder.c => recorder.c | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename ot-recorder.c => recorder.c (100%) diff --git a/Makefile b/Makefile index 3048848..c7646de 100644 --- a/Makefile +++ b/Makefile @@ -60,15 +60,15 @@ TARGETS += ot-recorder ocat all: $(TARGETS) -ot-recorder: ot-recorder.o $(OTR_OBJS) - $(CC) $(CFLAGS) -o ot-recorder ot-recorder.o $(OTR_OBJS) $(LIBS) +ot-recorder: recorder.o $(OTR_OBJS) + $(CC) $(CFLAGS) -o ot-recorder recorder.o $(OTR_OBJS) $(LIBS) ocat: ocat.o $(OTR_OBJS) $(CC) $(CFLAGS) -o ocat ocat.o $(OTR_OBJS) $(LIBS) $(OTR_OBJS): config.mk -ot-recorder.o: ot-recorder.c storage.h util.h Makefile geo.h udata.h json.h http.h gcache.h config.mk hooks.h +recorder.o: recorder.c storage.h util.h Makefile geo.h udata.h json.h http.h gcache.h config.mk hooks.h geo.o: geo.h geo.c udata.h Makefile config.mk geohash.o: geohash.h geohash.c udata.h Makefile config.mk base64.o: base64.h base64.c diff --git a/ot-recorder.c b/recorder.c similarity index 100% rename from ot-recorder.c rename to recorder.c