Skip to content

Commit

Permalink
* fix command echo in install target
Browse files Browse the repository at this point in the history
  • Loading branch information
brainpower committed Jun 1, 2014
1 parent 8badb8e commit 8e47d41
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cpp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,17 @@ $(EXEC): $(EXEC).o $(OBJS) $(STLIB) $(HDRS)

install: all
@echo -e " \e[1mINSTALL \e[0m$(SHLIB)"
$(INSTALL) -Dm755 $(SHLIB) $(DESTDIR)$(PREFIX)/lib/$(SHLIB)
@$(INSTALL) -Dm755 $(SHLIB) $(DESTDIR)$(PREFIX)/lib/$(SHLIB)
@echo -e " \e[1mLN \e[0m$(SHLIBM)"
$(LNS) $(SHLIB) $(DESTDIR)$(PREFIX)/lib/$(SHLIBM)
@$(LNS) $(SHLIB) $(DESTDIR)$(PREFIX)/lib/$(SHLIBM)
@echo -e " \e[1mLN \e[0m$(SHLIBN)"
$(LNS) $(SHLIB) $(DESTDIR)$(PREFIX)/lib/$(SHLIBN)
@$(LNS) $(SHLIB) $(DESTDIR)$(PREFIX)/lib/$(SHLIBN)

@echo -e " \e[1mINSTALL \e[0m$(CAHDR)"
$(INSTALL) -Dm755 src/$(CAHDR) $(DESTDIR)$(PREFIX)/include/checkarg/$(CAHDR)
@$(INSTALL) -Dm755 src/$(CAHDR) $(DESTDIR)$(PREFIX)/include/checkarg/$(CAHDR)

@echo -e " \e[1mINSTALL \e[0m$(PCFILE)"
$(INSTALL) -Dm755 data/$(PCFILE) $(DESTDIR)$(PREFIX)/lib/pkgconfig/$(PCFILE)
@$(INSTALL) -Dm755 data/$(PCFILE) $(DESTDIR)$(PREFIX)/lib/pkgconfig/$(PCFILE)

clean:
@for e in $(OBJS) $(CAOBJS); do \
Expand Down

0 comments on commit 8e47d41

Please sign in to comment.