blob: 5323dcdf6df09ae88633e2ad4dd544f39687f298 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import os ;
local DIST = [ os.environ DIST ] ;
exe mppdown : [ glob-tree *.cpp ] : <linkflags>-lboost_program_options ;
alias dist : bin man ;
install bin : mppdown : <location>$(DIST)/usr/bin : <variant>release ;
install man : mppdown.1 : <location>$(DIST)/usr/share/man/man1 ;
|