# @(#)makefile 14.1 (ESO-IPG) 11/23/99 10:40:27 # .COPYRIGHT: Copyright (c) 1994 European Southern Observatory, # all rights reserved # .TYPE Make file # .NAME $MIDASHOME/$MIDVERS/pipeline/uves/libsrc/makefile # .LANGUAGE makefile syntax # .ENVIRONMENT Unix Systems. # .COMMENT Compiles source files and generates "libphysmod.a" library # as well as libuves.a # .REMARKS # .AUTHOR Sebastian Wolf # .VERSION 1.1 991123: Implementation # DEFINITIONS: include ../../../local/default.mk CFLAGS = $(C_OPT) $(DEBUG) $(SYS) -I$(LINC) -I$(INC) LIB = $(LLIBDIR)/libech_nr.a OBJ = covsrt.o \ gaussj.o \ gauss_fit.o \ mrqcof.o \ mrqmin.o \ nrutil.o \ nonlfit.o \ polint.o # DEPENDENCIES: all: $(MAKEFILE_VMS) $(LIB) $(MAKEFILE_VMS): makefile $(MAKE_VMS) $(LIB) :: $(OBJ) $(LINC)/nrutil.h $(AR) $(AR_OPT) $(LIB) $(OBJ) $(RANLIB) $(LIB) clean: rm -f $(OBJ)