160,162c160 < # CL did this while on a mission to link statically. Perhaps it's < # an issue only for SunOS; at least it hurts others little. < SHLIB_CFLAGS = -pic --- > #SHLIB_CFLAGS = 167,168d164 < # CL simple-mindedly constructs a library for static linking. < SHLIB_LD = ar qv 173,174c169 < # CL forces the suffix to denote a library for static linking. < SHLIB_SUFFIX = .a --- > #SHLIB_SUFFIX = .a 380,382c375 < # CL adjoins to the link line the list of libraries that otherwise < # tnm.so would have tracked. < $(LD) $(LD_FLAGS) $(LD_SEARCH_FLAGS) -o scotty scotty.o $(TCL_LIB_SPEC) $(LIBS) $(DL_LIBS) -lm $(OSIMIS_LIBS) $(MSQL_LIBS) $(GDMO_LIBS) $(LIBS) --- > $(LD) $(LD_FLAGS) $(LD_SEARCH_FLAGS) -o scotty scotty.o $(TCL_LIB_SPEC) $(LIBS) $(DL_LIBS) -lm 385,386c378 < # CL makes a simple library, with just $(TNM_OBJS). < $(SHLIB_LD) tnm$(SHLIB_SUFFIX) $(TNM_OBJS) --- > $(SHLIB_LD) $(TNM_OBJS) -o tnm$(SHLIB_SUFFIX) $(LIBS) $(OSIMIS_LIBS) $(MSQL_LIBS) $(GDMO_LIBS) 389d380 < # CL hasn't yet crystallized a statically-linked executable for this. 392,393c383 < # CL makes another simple library, for static linking. < $(SHLIB_LD) tkined$(SHLIB_SUFFIX) $(TKI_GENERIC_OBJS) --- > $(SHLIB_LD) $(TKI_GENERIC_OBJS) -o tkined$(SHLIB_SUFFIX) $(LIBS)