diff --git a/src/Makefile b/src/Makefile index a18e1c6..642adcc 100644 --- a/src/Makefile +++ b/src/Makefile @@ -59,8 +59,11 @@ distclean: clean install: all $(MKDIR) $(DESTDIR)$(BINDIR) $(INSTALL) -m 0755 calendar $(DESTDIR)$(BINDIR)/calendar + $(MKDIR) $(DESTDIR)$(BINDIR) $(INSTALL) -m 0755 fontsel $(DESTDIR)$(BINDIR)/fontsel + $(MKDIR) $(DESTDIR)$(BINDIR) $(INSTALL) -m 0755 progress $(DESTDIR)$(BINDIR)/progress + $(MKDIR) $(DESTDIR)$(BINDIR) $(INSTALL) -m 0755 run $(DESTDIR)$(BINDIR)/run uninstall: diff --git a/src/project.conf b/src/project.conf index 29e7484..6dc3d76 100644 --- a/src/project.conf +++ b/src/project.conf @@ -7,15 +7,19 @@ dist=Makefile [calendar] type=binary sources=calendar.c +install=$(BINDIR) [fontsel] type=binary sources=fontsel.c +install=$(BINDIR) [progress] type=binary sources=progress.c +install=$(BINDIR) [run] type=binary sources=run.c +install=$(BINDIR)