From ae32766f8620839f5bfc7e8384c1a4ab1781727b Mon Sep 17 00:00:00 2001 From: Avery Pennarun Date: Thu, 31 Dec 2009 14:45:04 -0500 Subject: [PATCH] Rename datagen.c to randomgen.c, to better reflect its purpose. --- .gitignore | 2 +- Makefile | 6 +++--- datagen.c => randomgen.c | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename datagen.c => randomgen.c (100%) diff --git a/.gitignore b/.gitignore index c80ee66..7b336d5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ bup bup-split bup-join -datagen +randomgen *.o *.so *~ diff --git a/Makefile b/Makefile index b07f7d0..1ecc388 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,9 @@ CFLAGS=-Wall -g -O2 -Werror -I/usr/include/python2.5 -g -fPIC default: all -all: bup-split bup-join bup datagen hashsplit.so +all: bup-split bup-join bup randomgen hashsplit.so -datagen: datagen.o +randomgen: randomgen.o hashsplit.so: hashsplitmodule.o $(CC) -shared -o $@ $< @@ -40,5 +40,5 @@ bup-%: cmd-%.sh clean: rm -f *.o *.so *~ .*~ *.pyc \ - bup bup-split bup-join datagen \ + bup bup-split bup-join randomgen \ out[12] tags[12] diff --git a/datagen.c b/randomgen.c similarity index 100% rename from datagen.c rename to randomgen.c -- 2.39.5