~maddevelopers/mg5amcnlo/WWW5_caching

« back to all changes in this revision

Viewing changes to users/mardelcourt/PROC_242195/PROC_242195/Source/DHELAS/makefile

  • Committer: John Doe
  • Date: 2013-03-25 20:27:02 UTC
  • Revision ID: john.doe@gmail.com-20130325202702-5sk3t1r8h33ca4p4
first clean version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# ----------------------------------------------------------------------------
 
2
#
 
3
# Makefile for DHELAS 4.0 library
 
4
# Feb. 28, 2001
 
5
#
 
6
# ----------------------------------------------------------------------------
 
7
#
 
8
# Use a TAB to precede shell commands (e.g., f90, ar, etc).
 
9
# Note: this Makefile uses features that *may not*
 
10
# be supported by make utilities other than GNU make.
 
11
#
 
12
# ----------------------------------------------------------------------------
 
13
 
 
14
include ../make_opts
 
15
 
 
16
LIBRARY = libdhelas.$(libext)
 
17
LIBDIR  = ../../lib/
 
18
 
 
19
BASIC_OBJS = aloha_functions.o
 
20
 
 
21
include ./aloha_file.inc
 
22
 
 
23
all: $(LIBDIR)$(LIBRARY)
 
24
 
 
25
$(LIBDIR)$(LIBRARY): $(BASIC_OBJS) $(ALOHARoutine)
 
26
        $(call CREATELIB, $@, $^)
 
27
 
 
28
clean:
 
29
        $(RM) *.o $(LIBDIR)$(LIBRARY)