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