Mercurial > hg > octave-lyh
view libcruft/Makerules.in @ 1393:a771d1785c2a
[project @ 1995-09-14 09:31:16 by jwe]
author | jwe |
---|---|
date | Thu, 14 Sep 1995 09:36:42 +0000 |
parents | 9f01b6c2a607 |
children | 2eb569ed50bf |
line wrap: on
line source
# @configure_input@ # # Common rules for octave's libcruft directories. # # John W. Eaton # jwe@che.utexas.edu # Department of Chemical Engineering # The University of Texas at Austin SOURCES = *.f DISTFILES = Makefile.in $(SOURCES) $(SPECIAL) CRUFT_FSRC = $(wildcard $(srcdir)/*.f) CRUFT_BASE = $(notdir $(CRUFT_FSRC)) CRUFT_CSRC = $(patsubst %.f, %.c, $(CRUFT_BASE)) CRUFT_OBJ = $(patsubst %.f, %.o, $(CRUFT_BASE)) CWD = $(shell pwd) THISDIR = $(notdir $(CWD)) all: $(CRUFT_OBJ) $(SPECIAL_DEPEND) .PHONY: all install: all .PHONY: install uninstall: .PHONY: uninstall tags: $(SOURCES) ctags $(SOURCES) TAGS: $(SOURCES) etags $(SOURCES) clean: rm -f *.a *.o .PHONY: clean mostlyclean: rm -f *.o .PHONY: mostlyclean maintainer-clean: clean rm -f tags TAGS Makefile .PHONY: maintainer-clean local-dist: ln $(DISTFILES) ../../`cat ../../.fname`/libcruft/$(THISDIR) .PHONY: local-dist dist: ln $(EXTERNAL_DISTFILES) ../../`cat ../../.fname`/libcruft/$(THISDIR) .PHONY: dist