Mercurial > hg > octave-avbm
view libcruft/Makefile.in @ 1311:b4586d676b7f
[project @ 1995-06-25 05:07:45 by jwe]
author | jwe |
---|---|
date | Sun, 25 Jun 1995 05:07:45 +0000 |
parents | 364906259d4a |
children | 02a4e580de4e |
line wrap: on
line source
# # Makefile for octave's libcruft directory # # John W. Eaton # jwe@che.utexas.edu # Department of Chemical Engineering # The University of Texas at Austin TOPDIR = .. srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ include $(TOPDIR)/Makeconf INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ # List of the directories that contain Fortran source. Simply copying # a new .f file into one of these directories is sufficient to have it # added to libcruft.a. If you add a new directory here, you also need # generate a new configure script (edit configure.in and run autoconf). CRUFT_DIRS = balgen blas dassl eispack fftpack fsqp lapack linpack \ minpack misc npsol odepack qpsol quadpack ranlib slatec-fn \ villad SUBDIRS = $(CRUFT_DIRS) DISTFILES = Makefile.in Makerules.in $(SOURCES) STOP.patch all: $(SUBDIRS) libcruft.a .PHONY: all $(SUBDIRS): echo making all in $@ cd $@; $(MAKE) all .PHONY: $(SUBDIRS) CRUFT_FSRC = $(foreach dir, $(SUBDIRS), $(wildcard $(srcdir)/$(dir)/*.f)) CRUFT_OBJ3 = $(patsubst $(srcdir)/%, %, $(CRUFT_FSRC)) CRUFT_OBJ2 = $(patsubst %.f, %.o, $(CRUFT_OBJ3)) CRUFT_OBJ1 = $(subst misc/d1mach.o, , $(CRUFT_OBJ2)) CRUFT_OBJ = $(CRUFT_OBJ1) misc/d1mach.o misc/dostop.o libcruft.a: $(CRUFT_OBJ) rm -f libcruft.a $(AR) $(ARFLAGS) libcruft.a $(CRUFT_OBJ) $(RANLIB) libcruft.a $(CRUFT_OBJ): check: all .PHONY: check install uninstall clean mostlyclean distclean realclean:: $(SUBDIR_FOR_COMMAND) install:: $(top_srcdir)/mkinstalldirs $(libdir) rm -f $(libdir)/libcruft.a $(INSTALL_DATA) libcruft.a $(libdir)/libcruft.a $(RANLIB) $(libdir)/libcruft.a uninstall:: rm -f $(libdir)/libcruft.a tags TAGS:: $(SOURCES) $(SUBDIR_FOR_COMMAND) tags:: ctags $(SOURCES) TAGS:: $(SOURCES) etags $(SOURCES) clean mostlyclean:: rm -f *.a *.o distclean:: rm -f *.a *.o Makefile realclean:: rm -f *.a *.o tags TAGS Makefile local-dist: for dir in $(SUBDIRS); do mkdir ../`cat ../.fname`/libcruft/$$dir; cd $$dir; $(MAKE) $@; cd ..; done ln $(DISTFILES) ../`cat ../.fname`/libcruft .PHONY: local-dist dist: for dir in $(SUBDIRS); do mkdir ../`cat ../.fname`/libcruft/$$dir; cd $$dir; $(MAKE) $@; cd ..; done ln $(DISTFILES) ../`cat ../.fname`/libcruft .PHONY: dist