source: JEM-EUSO/esaf_cc_at_lal/GNUmakefile @ 156

Last change on this file since 156 was 114, checked in by moretto, 11 years ago

actual version of ESAF at CCin2p3

File size: 864 bytes
Line 
1# Makefile for ESAF (Euso Simulation and Analysis Framework)
2# $Id: GNUmakefile 2998 2011-10-26 19:02:43Z mabl $
3# D. De Marco created Jan, 23 2002
4#
5
6
7ifndef ESAFINSTALL
8ESAFINSTALL = ./
9endif
10
11include $(ESAFINSTALL)/packages/config.gmk
12
13.PHONY: all includes clean clean_all clean_arch obj lib tags ID dist Simu Reco doc
14
15all includes obj lib tags map ID Simu Reco: checks
16        @(cd packages && $(MAKE) $@)
17
18dist:
19        @echo Making distribution file
20        @./packages/tools/CreateDistFile.sh
21
22checks:
23        @echo "Checking requirements..."
24        @./packages/tools/checkRequirements.sh >/dev/null && echo "OK"
25        @echo `pwd` > .requirements.checked.successfully
26        @mkdir -p $(ESAFTMP)
27
28clean clean_all clean_arch:
29        @(cd packages && $(MAKE) $@)
30        @rm -f .requirements.checked.successfully
31
32doc:
33        @echo  "Producing html documentation..."
34        @(cd packages && $(MAKE) $@)
35        @(cd doc && $(MAKE) $@)
Note: See TracBrowser for help on using the repository browser.