Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
TargetGalaxy authored Sep 12, 2021
1 parent 2132a73 commit f0b97bf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ PREFIX = /usr

all:
@echo Run \'make install\' to install LightPKG.
@chmod 755 lightpkg

install:
@sudo mkdir -p $(DESTDIR)$(PREFIX)/bin
@sudo cp -p lightpkg $(DESTDIR)$(PREFIX)/bin/lightpkg
@sudo chmod 755 $(DESTDIR)$(PREFIX)/bin/lightpkg
@mkdir -p $(DESTDIR)$(PREFIX)/bin
@cp -p lightpkg $(DESTDIR)$(PREFIX)/bin/lightpkg

uninstall:
@sudo rm -rf $(DESTDIR)$(PREFIX)/bin/lightpkg
@rm -rf $(DESTDIR)$(PREFIX)/bin/lightpkg

0 comments on commit f0b97bf

Please sign in to comment.