********> bugfix.9 Author: Dave Case Date: 4/30/02 Programs: molsurf (in mm_pbsa) Severity: Moderate Description: There is a missing suffix rule to describe how C programs should be compiled. Fix: Make the following change to amber7/src/mm_pbsa/Makefile ----------------------------------------------------------------------------- *** Makefile 2002/02/13 22:01:03 1.3 --- Makefile 2002/04/20 16:14:43 1.4 *************** *** 29,34 **** --- 29,37 ---- .f.o: $< ../Compile L1 -D$(PREC) $< + .c.o: $< + ../Compile CC -D$(PREC) $< + PROGS = make_crd_hg$(SFX) molsurf$(SFX) ----------------------------------------------------------------------------- Workarounds: none (that are any easier than just doing the above patch) Files affected: amber7/src/mm_pbsa/Makefile