source: trunk/FACT++/dim_v19r15/makefile@ 10278

Last change on this file since 10278 was 10183, checked in by tbretz, 14 years ago
New import.
File size: 657 bytes
Line 
1#
2# global makefile
3#
4
5GUI = yes
6
7all:
8 echo " "; echo " " ; echo ==dim==; $(MAKE) -f makefile_dim all
9 echo " "; echo " " ; echo ==utilities==; $(MAKE) -f makefile_util all
10 echo " "; echo " " ; echo ==examples==; $(MAKE) -f makefile_examples all
11ifneq ($(GUI),no)
12 echo " "; echo " " ; echo ==did==; $(MAKE) THREADS=no -f makefile_did all
13endif
14
15# Test, if ODIR is set before trying to clean up.
16ifneq ($(ODIR),)
17clean:
18 /bin/rm -f $(ODIR)/*.o core *~
19 cd src; /bin/rm -f core *~
20 cd src/did; /bin/rm -f core *~
21 cd src/examples; /bin/rm -f core *~
22 cd src/util; /bin/rm -f core *~
23
24realclean: clean
25 /bin/rm -f $(ODIR)/*
26endif
Note: See TracBrowser for help on using the repository browser.