# HG changeset patch # User Mychaela Falconia # Date 1477467991 0 # Node ID 7cc2f23609224e233bcd5eeb6099163470d6af5e # Parent 4213cf6536fa879eb3bd20c46d6c907ca4a28480 top Makefile install rule: new packaging approach diff -r 4213cf6536fa -r 7cc2f2360922 Makefile --- a/Makefile Wed Oct 26 07:35:42 2016 +0000 +++ b/Makefile Wed Oct 26 07:46:31 2016 +0000 @@ -10,6 +10,11 @@ for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done install: FRC + mkdir -p /opt/freecalypso for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done + if [ -d target-bin ]; then \ + mkdir -p /opt/freecalypso/target-bin; \ + install -c -m 644 target-bin/* /opt/freecalypso/target-bin; \ + fi FRC: