From 738869d95ebd3a553985b0002dade5d9f651ffe7 Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Tue, 19 Aug 2008 13:44:48 +0200 Subject: [PATCH] Renamed foobar to fb. --- .gitignore | 2 +- src/Makefile.am | 6 +++--- src/{foobar.c => fb.c} | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) rename src/{foobar.c => fb.c} (93%) diff --git a/.gitignore b/.gitignore index 860a4a0..430fd46 100644 --- a/.gitignore +++ b/.gitignore @@ -22,5 +22,5 @@ ltmain.sh *.la *.lo *.o -foobar +fb diff --git a/src/Makefile.am b/src/Makefile.am index 5005281..2dd0218 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -6,8 +6,8 @@ lib_LTLIBRARIES = libfoobar.la libfoobar_la_SOURCES = libfoobar.c foobar.h libfoobar_la_LDFLAGS = -version-info 0:0:0 -bin_PROGRAMS = foobar +bin_PROGRAMS = fb -foobar_SOURCES = foobar.c foobar.h -foobar_LDADD = libfoobar.la +fb_SOURCES = fb.c foobar.h +fb_LDADD = libfoobar.la diff --git a/src/foobar.c b/src/fb.c similarity index 93% rename from src/foobar.c rename to src/fb.c index 927c868..a60fa9e 100644 --- a/src/foobar.c +++ b/src/fb.c @@ -1,5 +1,5 @@ /* - * foobar - src/foobar.c + * foobar - src/fb.c * Copyright (C) 2008 Sebastian Harl * * This program is free software; you can redistribute it and/or modify it @@ -45,13 +45,13 @@ static void exit_usage(char *name, int status) " -h display this help and exit\n" " -V display the version number and copyright\n" - "\nfoobar "VERSION", http://tokkee.org\n", basename(name)); + "\nfb "VERSION", http://tokkee.org\n", basename(name)); exit(status); } /* exit_usage */ static void exit_version(void) { - printf("foobar version "VERSION", built "BUILD_DATE"\n" + printf("fb version "VERSION", built "BUILD_DATE"\n" "Copyright (C) 2008 Sebastian Harl \n" "\nThis is free software under the terms of the GNU GPLv2; see " -- 2.30.2