view scripts/miscellaneous/Makefile.in @ 682:646ff1b3ff9a

[project @ 1994-09-09 15:44:16 by jwe]
author jwe
date Fri, 09 Sep 1994 15:45:41 +0000
parents 8264438c7f5b
children a99f27ec34ba
line wrap: on
line source

#
# Makefile for octave's scripts/miscellaneous directory
#
# John W. Eaton
# jwe@che.utexas.edu
# Department of Chemical Engineering
# The University of Texas at Austin

TOPDIR = ../..

script_sub_dir = miscellaneous

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)

FCN_FILES = $(wildcard $(srcdir)/*.m)
FCN_FILES_NO_DIR = $(notdir $(FCN_FILES))

all:
.PHONY: all

install: all
	if test -d $(fcnfiledir)/$(script_sub_dir) ; then true ; \
	else $(TOPDIR)/mkpath $(fcnfiledir)/$(script_sub_dir) ; fi
	for f in $(FCN_FILES_NO_DIR) ; do \
	  rm -f $(fcnfiledir)/$(script_sub_dir)/$$f ; \
	  $(INSTALL_DATA) $(srcdir)/$$f $(fcnfiledir)/$(script_sub_dir)/$$f ; \
	done
.PHONY: install

uninstall:
	for f in $(FCN_FILES_NO_DIR) ; \
	  do rm -f $(fcnfiledir)/$(script_sub_dir)/$$f ; \
	done
.PHONY: uninstall

clean:
.PHONY: clean

tags: $(SOURCES)
	ctags $(SOURCES)

TAGS: $(SOURCES)
	etags $(SOURCES)

mostlyclean: clean
.PHONY: mostlyclean

distclean: clean
	rm -f Makefile
.PHONY: distclean

realclean: distclean
	rm -f tags TAGS
.PHONY: realclean

local-dist:
	ln $(DISTFILES) ../`cat ../.fname`/scripts
	for dir in $(DISTDIRS); do ln -s ../../scripts/$$dir ../`cat ../.fname`/scripts ; done
.PHONY: local-dist

dist:
	ln $(DISTFILES) ../`cat ../.fname`/scripts
	for dir in $(DISTDIRS); do ln -s ../../scripts/$$dir ../`cat ../.fname`/scripts ; done
.PHONY: dist