| 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) |
| 33 | SOFLAGS = -b |
| 34 | SHLD = ld -L/usr/lib/cmplrs/cxx -rpath /usr/lib/cmplrs/cxx -expect_unresolved \ |
| 35 | -g0 -O1 -msym -shared /usr/lib/cmplrs/cc/crt0.o /usr/lib/cmplrs/cxx/_main.o |
| 36 | SHFLIB = -lUfor -lfor -lFutil -lm |
| 37 | |
| 38 | G3LIBS = -lgeant321 |
| 39 | CLIBS = -lminicern |
| 40 | |
| 41 | LIBS = $(ROOTLIBS) -lNew -lm |
| 42 | GLIBS = $(ROOTLIBS) $(ROOTGLIBS) -lXm -lXt -lX11 -lm -lPW |