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