diff options
author | Bradley Smith | 2008-03-08 23:16:59 +0000 |
---|---|---|
committer | Bradley Smith | 2008-03-08 23:16:59 +0000 |
commit | bbe446734eae190b2fc42bdf0f9a131ce99d8de4 (patch) | |
tree | 12f55bae88659740d9dc0e2eb795cfce77032a72 | |
parent | Add error message when given an invalid instruction. (diff) | |
download | gnurobots-bbe446734eae190b2fc42bdf0f9a131ce99d8de4.tar.gz |
Change binary name to gnurobots.
Signed-off-by: Bradley Smith <brad@brad-smith.co.uk>
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | src/Makefile.am | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -14,6 +14,6 @@ config.log config.status configure libtool -src/grobots +src/gnurobots stamp-h1 *~ diff --git a/src/Makefile.am b/src/Makefile.am index cab2e16..36751cc 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -bin_PROGRAMS = grobots +bin_PROGRAMS = gnurobots INCLUDES = $(GLIB2_CFLAGS) $(GUILE_CFLAGS) -I$(top_builddir)/include \ -DPKGLIBDIR=\"$(pkglibdir)\" \ @@ -7,5 +7,5 @@ INCLUDES = $(GLIB2_CFLAGS) $(GUILE_CFLAGS) -I$(top_builddir)/include \ -DMAPS_PATH=\"$(mapsdir)\" \ -DSCRIPTS_PATH=\"$(schemedir)\" -grobots_SOURCES = main.c api.c sign.c map.c grobot.c userinterface.c -grobots_LDFLAGS = $(GLIB2_LIBS) $(GUILE_LDFLAGS) -lltdl +gnurobots_SOURCES = main.c api.c sign.c map.c grobot.c userinterface.c +gnurobots_LDFLAGS = $(GLIB2_LIBS) $(GUILE_LDFLAGS) -lltdl |