Changeset 99
- Timestamp:
- Nov 13, 2013, 3:37:09 PM (11 years ago)
- Location:
- trunk/oarutils
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/oarutils/Makefile
r98 r99 7 7 8 8 TARGET_C := mpilauncher 9 TARGET_MAN := mpilauncher.1 oar-envsh.1 oar-dispatch.1 oar-parexec.1 10 TARGET_HTML := mpilauncher.html oar-envsh.html oar-dispatch.html oar-parexec.html 9 TARGET_MAN := mpilauncher.1 oar-envsh.1 oar-dispatch.1 oar-parexec.1 oar-profile.1 10 TARGET_HTML := mpilauncher.html oar-envsh.html oar-dispatch.html oar-parexec.html oar-profile.html 11 11 12 12 PREFIX :=/opt/oar/current 13 13 PREFIX_MAN =$(PREFIX)/man 14 PREFIX_ETC =$(PREFIX)/etc 14 15 15 16 … … 36 37 @install -d -m 0755 -o root -g root $(PREFIX)/bin 37 38 @install -d -m 0755 -o root -g root $(PREFIX_MAN)/man1 39 @install -d -m 0755 -o root -g root $(PREFIX_ETC)/ 38 40 install -m 0755 -o root -g root oar-parexec $(PREFIX)/bin 39 41 install -m 0755 -o root -g root oar-dispatch $(PREFIX)/bin … … 43 45 install -m 0644 -o root -g root mpilauncher.1 $(PREFIX_MAN)/man1 44 46 install -m 0644 -o root -g root oar-envsh.1 $(PREFIX_MAN)/man1 47 install -m 0644 -o root -g root oar-profile.1 $(PREFIX_MAN)/man1 48 install -m 0644 -o root -g root oar-profile.sh $(PREFIX_ETC) 45 49 46 50 sync: … … 62 66 sed -re 's#^[/ ]\* ?##; s#^// ?##' $< | pod2html > $@ 63 67 68 %.1: %.sh 69 pod2man -n $* $(PODFLAG) $< > $@ 70 71 %.html: %.sh 72 pod2html $< > $@ 73 64 74 %.1: % 65 75 pod2man -n $* $(PODFLAG) $< > $@
Note: See TracChangeset
for help on using the changeset viewer.