~chirality-flow/chiralityflow/ChiralityFlowMG

« back to all changes in this revision

Viewing changes to aloha/template_files/Makefile_F

  • Committer: andrew.lifson at lu
  • Date: 2021-09-02 13:57:34 UTC
  • Revision ID: andrew.lifson@thep.lu.se-20210902135734-4eybgli0iljkax9b
added fresh copy of MG5_aMC_v3.2.0

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
FFLAGS += $(ALOHA_FLAG)
 
22
 
 
23
include ./aloha_file.inc
 
24
 
 
25
all: $(LIBDIR)$(LIBRARY)
 
26
 
 
27
$(LIBDIR)$(LIBRARY): $(BASIC_OBJS) $(ALOHARoutine)
 
28
        $(call CREATELIB, $@, $^)
 
29
 
 
30
clean:
 
31
        $(RM) *.o $(LIBDIR)$(LIBRARY)