diff --git a/Makefile b/Makefile index bac5b2b..7567906 100644 --- a/Makefile +++ b/Makefile @@ -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)" diff --git a/const.h b/const.h index d6efa4c..9718a84 100644 --- a/const.h +++ b/const.h @@ -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 */