aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 40acd65..3663579 100644
--- a/Makefile
+++ b/Makefile
@@ -31,9 +31,9 @@ debug: CFLAGS += -ggdb -Og -Werror
debug: LDFLAGS += -ggdb -Og
install: $(PROG) $(MANPAGE)
- install -Dm755 -s $(PROG) $(DESTDIR)$(PREFIX)$(bindir)
- install -Dm644 ./data/* -t $(DESTDIR)$(PREFIX)$(datarootdir)/$(PROG)/
- install -Dm644 $(MANPAGE) $(DESTDIR)$(PREFIX)$(mandir)/man1/
+ install -Dm755 -s $(PROG) -t $(DESTDIR)$(PREFIX)$(bindir)
+ install -Dm644 ./data/* -t $(DESTDIR)$(PREFIX)$(datarootdir)/$(PROG)
+ install -Dm644 $(MANPAGE) -t $(DESTDIR)$(PREFIX)$(mandir)/man1
clean:
$(RM) $(OBJ) $(OBJ:.o=.d) $(PROG)