Mercurial > hg > octave-lyh
view scripts/startup/Makefile.in @ 2325:b5568c31ee2c
[project @ 1996-07-15 22:20:21 by jwe]
author | jwe |
---|---|
date | Mon, 15 Jul 1996 22:20:21 +0000 |
parents | f33cac781a44 |
children | ccd72573a0cf |
line wrap: on
line source
# # Makefile for octave's scripts/startup directory # # John W. Eaton # jwe@bevo.che.wisc.edu # University of Wisconsin-Madison # Department of Chemical Engineering TOPDIR = ../.. script_sub_dir = startup srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ include $(TOPDIR)/Makeconf INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ SOURCES = octaverc # *.m DISTFILES = Makefile.in $(SOURCES) FCN_FILES = # $(wildcard $(srcdir)/*.m) FCN_FILES_NO_DIR = # $(notdir $(FCN_FILES)) all: .PHONY: all install: $(top_srcdir)/mkinstalldirs $(fcnfiledir)/$(script_sub_dir) if test -f $(fcnfiledir)/$(script_sub_dir)/octaverc ; then true ; \ else \ $(INSTALL_DATA) $(srcdir)/octaverc \ $(fcnfiledir)/$(script_sub_dir)/octaverc ; \ fi $(top_srcdir)/mkinstalldirs $(localfcnfiledir)/$(script_sub_dir) if test -f $(localfcnfiledir)/$(script_sub_dir)/octaverc ; \ then true ; \ else \ $(INSTALL_DATA) $(srcdir)/octaverc \ $(localfcnfiledir)/$(script_sub_dir)/octaverc ; \ 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 maintainer-clean: distclean rm -f tags TAGS .PHONY: maintainer-clean local-dist: ln $(DISTFILES) ../../`cat ../../.fname`/scripts/startup .PHONY: local-dist dist: ln $(DISTFILES) ../../`cat ../../.fname`/scripts/startup .PHONY: dist