Changeset 48 for trunk


Ignore:
Timestamp:
Dec 13, 2011, 8:15:43 AM (12 years ago)
Author:
g7moreau
Message:
  • Begin target install, update and sync...
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/oarutils/Makefile

    r41 r48  
    44PODFLAG=-c 'User Contributed OAR Documentation' -r 'LEGI Trokata'
    55
     6DESTDIR:=/opt/oar/current
    67
    7 .PHONY: all clean distclean
     8
     9.PHONY: all clean distclean install update sync
    810
    911all: mpilauncher mpilauncher.1 oar-envsh.1 oar-dispatch.1 oar-parexec.1
     
    1517        rm -f mpilauncher
    1618
     19install: update
     20
     21update:
     22        @install -d -m 0755 -o root -g root $(DESTDIR)/bin
     23        @install -d -m 0755 -o root -g root $(DESTDIR)/man/man1
     24        install -m 0755 -o root -g root oar-parexec $(DESTDIR)/bin
     25        install -m 0755 -o root -g root oar-dispatch $(DESTDIR)/bin
     26        install -m 0755 -o root -g root mpilauncher $(DESTDIR)/bin
     27        install -m 0644 -o root -g root oar-parexec.1 $(DESTDIR)/man/man1
     28        install -m 0644 -o root -g root oar-dispatch.1 $(DESTDIR)/man/man1
     29        install -m 0644 -o root -g root mpilauncher.1 $(DESTDIR)/man/man1
     30        install -m 0644 -o root -g root oar-envsh.1 $(DESTDIR)/man/man1
     31
     32sync:
     33        svn update
    1734
    1835mpilauncher: mpilauncher.o
Note: See TracChangeset for help on using the changeset viewer.