fe4da5cc |
1 | # Which Machine |
2 | PLATFORM = alpha |
3 | |
4 | # The compilers |
5 | CXX = cxx |
6 | F77 = f77 |
7 | |
8 | # Global optimisation |
9 | OPT = -O |
10 | OPT = -g |
11 | |
12 | # Shared library suffix |
13 | SL = so |
14 | |
15 | # The options |
16 | CXXOPTS = -I/usr/include |
17 | COPT = $(OPT) |
18 | FOPT = $(OPT) -nofor_main |
19 | |
20 | # CERNLIB defines |
21 | |
22 | CLIBDEFS = -DCERNLIB_DECS -DCERNLIB_BLDLIB -DCERNLIB_CZ |
23 | CLIBCXXOPTS = |
24 | CLIBCOPT = |
25 | CLIBFOPT = -I. |
26 | |
27 | # Additional directories for dependencies |
28 | |
29 | DEPINC = -I/usr/include/cxx |
30 | |
31 | LD = cxx |
32 | LDFLAGS = $(OPT) |
40da9a8f |
33 | |
34 | SHLD = ld |
617b19ae |
35 | SOFLAGS = -L/usr/lib/cmplrs/cxx -rpath /usr/lib/cmplrs/cxx -expect_unresolved \ |
4fcbd95b |
36 | -g0 -O1 -msym -shared /usr/lib/cmplrs/cc/crt0.o /usr/lib/cmplrs/cxx/_main.o |
617b19ae |
37 | SHLIB = -lcxxstd -lcxx -lexc -lots -lc -lUfor -lfor -lFutil -lm |
fe4da5cc |
38 | |
39 | G3LIBS = -lgeant321 |
40 | CLIBS = -lminicern |
41 | |
42 | LIBS = $(ROOTLIBS) -lNew -lm |
9119f6a9 |
43 | GLIBS = $(ROOTLIBS) $(ROOTGLIBS) -lXm -lXt -lX11 -lm -lPW -lUfor -lfor -lFutil -lm -lots |