Change program name to non-sequencer to avoid confusion (ha!)
This commit is contained in:
parent
e78b3f14e7
commit
7bf271c456
10
Makefile
10
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)"
|
||||
|
|
4
const.h
4
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 */
|
||||
|
||||
|
|
Loading…
Reference in New Issue