33 lines
393 B
Makefile
Executable file
33 lines
393 B
Makefile
Executable file
# $License$
|
|
#
|
|
#/bin/sh
|
|
|
|
LIB = @buildlib@/librecipes.a
|
|
|
|
SUFFIXES=
|
|
SUFFIXES= .f .d .o
|
|
|
|
F_FLAGS = @FFLAGS@ $(F77_FLAGS)
|
|
|
|
OBJS = simp1.o simp2.o simp3.o simplx.o
|
|
#splie2.o splin2.o spline.o splint.o
|
|
SRCS = $(OBJS:.o=.cpp)
|
|
|
|
|
|
all: $(LIB)
|
|
|
|
$(LIB): $(OBJS)
|
|
@ARCHIVE@ $(LIB) $(OBJS) > /dev/null
|
|
|
|
.f.o:
|
|
@F77@ -c $< $(F77_INCLUDES) $(F_FLAGS)
|
|
|
|
clean:
|
|
$(RM) $(OBJS) $(LIB)
|
|
|
|
|
|
#include $(DEPENDS)
|
|
|
|
|
|
|
|
|