Change program name to non-sequencer to avoid confusion (ha!)

pull/3/head
Jonathan Moore Liles 2008-05-18 12:15:11 -05:00
parent e78b3f14e7
commit 7bf271c456
2 changed files with 7 additions and 7 deletions

View File

@ -5,7 +5,7 @@
VERSION := 1.9.1
all: make.conf non
all: make.conf non-sequencer
make.conf: configure
@ ./configure
@ -69,11 +69,11 @@ OBJS=$(SRCS:.C=.o)
.PHONEY: all clean install dist valgrind config
clean:
rm -f non makedepend $(OBJS)
rm -f non-sequencer makedepend $(OBJS)
@ echo "$(DONE)"
valgrind:
valgrind ./non
valgrind ./non-sequencer
include scripts/colors
@ -88,7 +88,7 @@ $(OBJS): make.conf
DONE:=$(BOLD)$(GREEN)done$(SGR0)
non: $(OBJS)
non-sequencer: $(OBJS)
@ echo -n "Linking..."
@ rm -f $@
@ $(CXX) $(CXXFLAGS) $(LIBS) $(OBJS) -o $@ || echo "$(BOLD)$(RED)Error!$(SGR0)"
@ -96,7 +96,7 @@ non: $(OBJS)
install: all
@ echo -n "Installing..."
@ install non $(prefix)/bin
@ install non-sequencer $(prefix)/bin
@ mkdir -p "$(SYSTEM_PATH)"
@ cp -r instruments "$(SYSTEM_PATH)"
@ mkdir -p "$(DOCUMENT_PATH)"

View File

@ -29,11 +29,11 @@ const unsigned int PPQN = 480;
/* interval between GUI updates for playhead movement, etc. */
const double TRANSPORT_POLL_INTERVAL = 0.05;
const char APP_NAME[] = "Non";
const char APP_NAME[] = "Non-Sequencer";
const char APP_TITLE[] = "The Non-Sequencer";
const char COPYRIGHT[] = "Copyright (c) 2007-2008 Jonathan Moore Liles";
#define PACKAGE "non"
#define PACKAGE "non-sequencer"
/* directories */