Skip to content

Commit

Permalink
Makefile: verbose install
Browse files Browse the repository at this point in the history
  • Loading branch information
jdek committed Jul 30, 2016
1 parent a899049 commit 5cb6629
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libftpvita/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ $(TARGET_LIB): $(OBJS)
$(AR) -rcs $@ $^

clean:
@rm -rf $(TARGET_LIB) $(OBJS)
rm -rf $(TARGET_LIB) $(OBJS)

install: $(TARGET_LIB)
@mkdir -p $(DESTDIR)$(PREFIX)/lib/
@cp $(TARGET_LIB) $(DESTDIR)$(PREFIX)/lib/
cp $(TARGET_LIB) $(DESTDIR)$(PREFIX)/lib/
@mkdir -p $(DESTDIR)$(PREFIX)/include/
@cp ftpvita.h $(DESTDIR)$(PREFIX)/include/
cp ftpvita.h $(DESTDIR)$(PREFIX)/include/
@echo "Installed!"

0 comments on commit 5cb6629

Please sign in to comment.