Mercurial > hg > plibs
view Makefile @ 3:5c16a1ee5e8f
Changed dependecies.ps to dependencies.eps and dependencies.pdf
author | samer |
---|---|
date | Mon, 23 Jan 2012 21:16:00 +0000 |
parents | d13a95edfd2a |
children | 0f59c25041b8 |
line wrap: on
line source
# ---------------- configuration ---------------------- # install directories export INSTALL_LIB_TO=~/lib/prolog/x86_64 export INSTALL_PL_TO=~/lib/prolog # flags for install - BSD install seems to be different from GNU install export INSTALL_FLAGS='-bCS' PKGS="plsc plumdrum plumbing hdpmusic reactive" # ---------------- end of configuration --------------- main: for f in "$(PKGS)"; do make -C $$f; done clean: for f in "$(PKGS)"; do make -C $$f clean; done install: main for f in "$(PKGS)"; do make -C $$f install; done