*** Imakefile.orig Sat Apr 21 15:10:03 2001 --- Imakefile Sun Apr 14 15:29:24 2002 *************** *** 77,85 **** --- 77,105 ---- # Herbert J. Bernstein, March 1999 # yaya@bernstein-plus-sons.com + # Version 2.7.2.1+ + # Herbert J. Bernstein, April 2002 + # yaya@Bernstein-plus-sons.com + + # USER DEFINITIONS + # + # At this point, you may define the cpp macro PIXELDEPTH as 8, 16 or 32 + + #ifdef PIXELDEPTH + #if PIXELDEPTH==8 + DEPTHDEF = -DEIGHTBIT + #endif + #if PIXELDEPTH==16 + DEPTHDEF = -DSIXTEENBIT + #endif + #if PIXELDEPTH==32 + DEPTHDEF = -DTHIRTYTWOBIT + #endif + #else DEPTHDEF = -DTHIRTYTWOBIT # DEPTHDEF = -DSIXTEENBIT # DEPTHDEF = -DEIGHTBIT + #endif # RasMol's on-line help direcory # e.g. /usr/local/lib/rasmol/rasmol.hlp *************** *** 116,127 **** --- 136,165 ---- # # Architecture Specific Rules # + # If running under HPUX, define the appropriate variant + # with #define + # #ifdef HPArchitecture CCOPTIONS = -Ae CDEBUGFLAGS = +O2 +Onolimit + + #ifdef HPUX_PARISC_32 + CCOPTIONS = -Ae +DA2.0 +DS2.0 #endif + #ifdef HPUX_PARISC_64 + CCOPTIONS = -Ae +DA2.0W +DS2.0 -D_LONGLONG + #endif + + #ifdef HPUX_IA64_32 + CCOPTIONS = -Ae +DD32 +DSmckinley + #endif + + #ifdef HPUX_IA64_64 + CCOPTIONS = -Ae +DD64 +DSmckinley -D_LONGLONG + #endif + #endif ComplexProgramTarget(rasmol) MakeDirectories(install,$(RASMOLDIR))