Mercurial > hg > octave-nkf
view libcruft/Makerules.in @ 3265:a2b3a1413d28
[project @ 1999-09-03 02:53:03 by jwe]
author | jwe |
---|---|
date | Fri, 03 Sep 1999 02:53:10 +0000 |
parents | 041ea33fbbf4 |
children | 2efa28a91e7a |
line wrap: on
line source
# @configure_input@ # # Common rules for octave's libcruft directories. # # XXX FIXME XXX -- assumes that the libcruft directory tree is only # one level deep. # # John W. Eaton # jwe@bevo.che.wisc.edu # University of Wisconsin-Madison # Department of Chemical Engineering SOURCES = *.f DISTFILES = Makefile.in $(SOURCES) $(SPECIAL) CRUFT_FSRC = $(wildcard $(srcdir)/*.f) CRUFT_BASE = $(notdir $(CRUFT_FSRC)) CRUFT_OBJ = $(patsubst %.f, %.o, $(CRUFT_BASE)) ifeq ($(SHARED_LIBS), true) ifdef FPICFLAG CRUFT_PICOBJ := $(addprefix pic/, $(CRUFT_OBJ)) endif endif CWD = $(shell pwd) THISDIR = $(notdir $(CWD)) LIBCRUFT := ../libcruft.$(LIBEXT) LIBCRUFT_OBJS = $(CRUFT_OBJ) $(SPECIAL_DEPEND) LIBCRUFT_DEPS = $(LIBCRUFT)($(LIBCRUFT_OBJS)) ifeq ($(STATIC_LIBS), true) LIBCRUFT_DEPEND := $(LIBCRUFT_DEPS) endif all: pic $(LIBCRUFT_DEPEND) $(CRUFT_PICOBJ) $(SPECIAL_PICDEPEND) .PHONY: all .PRECIOUS: $(LIBCRUFT_OBJS) pic: @if [ -d pic ]; then \ true; \ else \ echo "mkdir pic"; \ mkdir pic; \ fi install:: all .PHONY: install uninstall:: .PHONY: uninstall tags: $(SOURCES) ctags $(SOURCES) TAGS: $(SOURCES) etags $(SOURCES) clean:: rm -f *.a *.o pic/*.o .PHONY: clean mostlyclean:: rm -f *.o pic/*.o .PHONY: mostlyclean distclean:: clean rm -f Makefile -rmdir pic .PHONY: distclean maintainer-clean:: distclean rm -f tags TAGS .PHONY: maintainer-clean dist: ln $(EXTERNAL_DISTFILES) ../../`cat ../../.fname`/libcruft/$(THISDIR) .PHONY: dist