]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/Makefile
Some changes resulting from last week work. The mc stuff has been removed.
[u/mrichter/AliRoot.git] / HLT / Makefile
1 #$Id$
2 ###########################
3 # Makefile for HLT code.  #
4 #                         #
5 # Author: Anders Vestbo   #                    
6 ###########################
7
8 LIBS = src hough comp misc
9 MAKEDIRS = $(LIBS) programs
10
11 all:
12         for i in $(MAKEDIRS) ; do cd $$i && $(MAKE) ; cd .. ; done
13
14 libs: 
15         for i in $(LIBS) ; do cd $$i && $(MAKE) ; cd .. ; done
16
17 clean:
18         for i in $(MAKEDIRS) ; do cd $$i && $(MAKE) clean ; cd .. ; done