Skip to content

Commit

Permalink
Install unison-fsmonitor when running "make install".
Browse files Browse the repository at this point in the history
  • Loading branch information
jhjourdan committed Dec 14, 2022
1 parent a32d8c9 commit eab2353
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/fsmonitor/linux/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,7 @@ $(FSMONITOR)$(EXEC_EXT): $(FSMCAMLOBJS) $(FSMCOBJS)
clean::
rm -f $(DIR)/*.cm[iox] $(DIR)/*.o $(DIR)/*~
rm -f $(FSMONITOR)$(EXEC_EXT)

install: buildexecutable
cp $(FSMONITOR)$(EXEC_EXT) $(INSTALLDIR)
cp $(FSMONITOR)$(EXEC_EXT) $(INSTALLDIR)$(FSMONITOR)-$(MAJORVERSION)$(EXEC_EXT)
4 changes: 4 additions & 0 deletions src/fsmonitor/solaris/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ $(FSMONITOR)$(EXEC_EXT): $(FSMCAMLOBJS) $(FSMCOBJS)
clean::
rm -f $(DIR)/*.cm[iox] $(DIR)/*.o $(DIR)/*~
rm -f $(FSMONITOR)$(EXEC_EXT)

install: buildexecutable
cp $(FSMONITOR)$(EXEC_EXT) $(INSTALLDIR)
cp $(FSMONITOR)$(EXEC_EXT) $(INSTALLDIR)$(FSMONITOR)-$(MAJORVERSION)$(EXEC_EXT)
4 changes: 4 additions & 0 deletions src/fsmonitor/windows/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ $(FSMONITOR)$(EXEC_EXT): $(FSMCAMLOBJS) $(FSMCOBJS)
clean::
rm -f $(DIR)/*.cm[iox] $(DIR)/*.{o,obj} $(DIR)/*~
rm -f $(FSMONITOR)$(EXEC_EXT)

install: buildexecutable
cp $(FSMONITOR)$(EXEC_EXT) $(INSTALLDIR)
cp $(FSMONITOR)$(EXEC_EXT) $(INSTALLDIR)$(FSMONITOR)-$(MAJORVERSION)$(EXEC_EXT)

0 comments on commit eab2353

Please sign in to comment.