Browse Source

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

tags/non-sequencer-v1.9.4
Jonathan Moore Liles 17 years ago
parent
commit
7bf271c456
2 changed files with 7 additions and 7 deletions
  1. +5
    -5
      Makefile
  2. +2
    -2
      const.h

+ 5
- 5
Makefile 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)"


+ 2
- 2
const.h 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 */



Loading…
Cancel
Save