File: makefile.static

package info (click to toggle)
fastjet 3.4.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 9,540 kB
  • sloc: cpp: 78,628; python: 6,112; sh: 1,038; fortran: 673; makefile: 635; ansic: 161
file content (37 lines) | stat: -rw-r--r-- 1,120 bytes parent folder | download | duplicates (4)
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
# common fastjet definitions
include ../../makefile.static

CXXSRC = NestedDefsPlugin.cc 
OBJS = $(patsubst %.cc,%.o,$(CXXSRC)) 

# fastjet includes
FASTJET_INCLUDE = -I../../include
INCLUDE += $(FASTJET_INCLUDE)

all: libNestedDefsPlugin.a

libNestedDefsPlugin.a: $(OBJS)
	ar cru libNestedDefsPlugin.a $(OBJS)
	ranlib libNestedDefsPlugin.a

clean:
	rm -f $(OBJS)

distclean: clean
	rm -f libNestedDefsPlugin.a *~

# NB: only use "relative" includes here (others are too subject
#     to change according to the system one is on...)
depend:
	makedepend  -f makefile.static $(FASTJET_INCLUDE) -I. -I./fastjet --   -- $(CXXSRC)

# DO NOT DELETE

NestedDefsPlugin.o: ../../include/fastjet/ClusterSequence.hh
NestedDefsPlugin.o: ../../include/fastjet/internal/DynamicNearestNeighbours.hh
NestedDefsPlugin.o: ../../include/fastjet/internal/numconsts.hh
NestedDefsPlugin.o: ../../include/fastjet/internal/base.hh
NestedDefsPlugin.o: ../../include/fastjet/PseudoJet.hh
NestedDefsPlugin.o: ../../include/fastjet/Error.hh
NestedDefsPlugin.o: ../../include/fastjet/JetDefinition.hh
NestedDefsPlugin.o: fastjet/NestedDefsPlugin.hh