*** Imakefile.orig Sun Apr 14 16:11:21 2002 --- Imakefile Sun Apr 14 16:15:08 2002 *************** *** 58,66 **** --- 58,86 ---- # 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 *************** *** 94,105 **** --- 114,143 ---- # # 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))