]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/amoreTPC-QA/Makefile
New versions of the DA executables to comply with DAQ DA file naming conventions
[u/mrichter/AliRoot.git] / TPC / amoreTPC-QA / Makefile
CommitLineData
e9d4890d 1INCLUDES = $(all_includes)
2INCLUDES += -I/usr/include/amore/
3
4METASOURCES = AUTO
5
6SUBDIRS = src
7
8timestamp=$(shell date +%Y%m%d)
9snapname=amoreTPC-QA$(timestamp)
10snaptgz=$(snapname).tgz
11
12default: all
13
14all:
15 @cd src; make;
16
17install: all
18 @cd src; make install;
19
20uninstall:
21 @cd src; make uninstall;
22
23clean:
24 @cd src; make clean;
25
26dist: clean
27 @mkdir amoreTPC-QA
28 @cp -r src AUTHORS ChangeLog README TODO VERSION Makefile amoreTPC-QA
29 @tar cfz $(snaptgz) amoreTPC-QA;
30 @rm -rf amoreTPC-QA
31
32rpm: