Mercurial > hg > octave-lyh
view scripts/time/Makefile.in @ 6441:8bcceddab2d5
[project @ 2007-03-23 15:35:28 by jwe]
author | jwe |
---|---|
date | Fri, 23 Mar 2007 15:35:28 +0000 |
parents | 61091f4af6e4 |
children | a84de7048629 |
line wrap: on
line source
# # Makefile for octave's scripts/time directory # # John W. Eaton # jwe@bevo.che.wisc.edu # University of Wisconsin-Madison # Department of Chemical Engineering TOPDIR = ../.. script_sub_dir = time srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ include $(TOPDIR)/Makeconf INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ SOURCES = asctime.m calendar.m clock.m ctime.m date.m datenum.m \ datestr.m datevec.m eomday.m etime.m is_leap_year.m now.m \ tic.m toc.m weekday.m DISTFILES = Makefile.in $(SOURCES) FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES)) FCN_FILES_NO_DIR = $(notdir $(FCN_FILES)) all: PKG_ADD .PHONY: all install install-strip: $(do-script-install) .PHONY: install install-strip uninstall: $(do-script-uninstall) .PHONY: uninstall clean: .PHONY: clean PKG_ADD: $(FCN_FILES) @echo "making PKG_ADD" @$(do-mkpkgadd) tags: $(SOURCES) ctags $(SOURCES) TAGS: $(SOURCES) etags $(SOURCES) mostlyclean: clean .PHONY: mostlyclean distclean: clean rm -f Makefile PKG_ADD .PHONY: distclean maintainer-clean: distclean rm -f tags TAGS .PHONY: maintainer-clean dist: $(LN_S) $(DISTFILES) ../../`cat ../../.fname`/scripts/time .PHONY: dist