Mercurial > hg > octave-nkf
view scripts/statistics/Makefile.in @ 3191:e4f4b2d26ee9
[project @ 1998-10-23 05:43:59 by jwe]
author | jwe |
---|---|
date | Fri, 23 Oct 1998 05:44:01 +0000 |
parents | 6d56646a2d1f |
children | 9ceefd891930 |
line wrap: on
line source
# # Makefile for octave's scripts/statistics directory # # John W. Eaton # jwe@bevo.che.wisc.edu # University of Wisconsin-Madison # Department of Chemical Engineering TOPDIR = ../.. script_sub_dir = statistics srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ include $(TOPDIR)/Makeconf INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ SOURCES = # *.m DISTFILES = Makefile.in $(SOURCES) SUBDIRS = base distributions models tests DISTSUBDIRS = $(SUBDIRS) BINDISTSUBDIRS = $(SUBDIRS) FCN_FILES = # $(wildcard $(srcdir)/*.m) FCN_FILES_NO_DIR = # $(notdir $(FCN_FILES)) all: $(SUBDIRS) .PHONY: all $(SUBDIRS): echo making all in $@ cd $@; $(MAKE) all .PHONY: $(SUBDIRS) install install-strip uninstall clean mostlyclean distclean maintainer-clean:: @$(subdir-for-command) .PHONY: install install-strip uninstall .PHONY: clean mostlyclean distclean maintainer-clean install install-strip:: uninstall:: tags TAGS:: $(SOURCES) $(SUBDIR_FOR_COMMAND) tags:: ctags $(SOURCES) TAGS:: $(SOURCES) etags $(SOURCES) distclean:: rm -f Makefile maintainer-clean:: rm -f tags TAGS Makefile dist: ln $(DISTFILES) ../../`cat ../../.fname`/scripts for dir in $(DISTSUBDIRS); do mkdir ../../`cat ../../.fname`/scripts/statistics/$$dir; cd $$dir; $(MAKE) $@; cd ..; done .PHONY: dist bin-dist: for dir in $(BINDISTSUBDIRS); do mkdir ../../`cat ../../.fname`/scripts/statistics/$$dir; cd $$dir; $(MAKE) $@; cd ..; done .PHONY: bin-dist