Browse Source

Make 'install' rule depend on 'all'

tags/non-sequencer-v1.9.4
Jonathan Moore Liles 17 years ago
parent
commit
9d0689a8fa
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Makefile

+ 2
- 2
Makefile View File

@@ -57,7 +57,7 @@ SRCS= \

OBJS=$(SRCS:.C=.o)

.PHONEY: all clean install dist
.PHONEY: all clean install dist valgrind

all: non makedepend

@@ -83,7 +83,7 @@ non: $(OBJS)
@ $(CXX) $(CXXFLAGS) $(LIBS) $(OBJS) -o $@ || (tput bold; tput setaf 1; echo Error!; tput sgr0)
@ test -x $@ && echo done.

install:
install: all
@ echo -n "Installing..."
@ install non $(prefix)/bin
@ mkdir -p "$(SYSTEM_PATH)"


Loading…
Cancel
Save