File: Makefile.alt

package info (click to toggle)
fastjet 3.4.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,552 kB
  • sloc: cpp: 78,628; python: 6,112; sh: 1,038; fortran: 673; makefile: 636; ansic: 161
file content (42 lines) | stat: -rw-r--r-- 1,176 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# makefile to illustrate how to build things using includes and
# libraries from a standard installation

# find location of fastjet-config
FASTJETCONFIG=fastjet-config

# get appropriate flags
CXXFLAGS = $(shell $(FASTJETCONFIG) --cxxflags)
LDFLAGS = $(shell $(FASTJETCONFIG) --libs --plugins)


fastjet_example: fastjet_example.o
	$(CXX) -o fastjet_example fastjet_example.o $(LDFLAGS)

fastjet_example_v1_interface: fastjet_example_v1_interface.o 
	$(CXX)  -o fastjet_example_v1_interface fastjet_example_v1_interface.o  $(LDFLAGS)


fastjet_areas: fastjet_areas.o  
	$(CXX)  -o fastjet_areas fastjet_areas.o  $(LDFLAGS) 

fastjet_areas_2.1.0: fastjet_areas_2.1.0.o
	$(CXX)  -o fastjet_areas_2.1.0 fastjet_areas_2.1.0.o  $(LDFLAGS) 

fastjet_subtraction: fastjet_subtraction.o
	$(CXX)  -o fastjet_subtraction fastjet_subtraction.o  $(LDFLAGS)

fastjet_timing: fastjet_timing.o CmdLine.o
	$(CXX)  -o fastjet_timing fastjet_timing.o CmdLine.o  $(LDFLAGS)

fastjet_timing_plugins: fastjet_timing_plugins.o CmdLine.o
	$(CXX) -o fastjet_timing_plugins fastjet_timing_plugins.o CmdLine.o $(LDFLAGS)




clean:
	rm -f *.o


depend:
	makedepend $(FASTJET_INCLUDE) -Y -- -- $(SRCS)