Mercurial > hg > octave-lyh
view libcruft/Makerules.in @ 3518:2dcc5f58ca0c
[project @ 2000-02-01 23:11:59 by jwe]
author | jwe |
---|---|
date | Tue, 01 Feb 2000 23:11:59 +0000 |
parents | 15cddaacbc2d |
children | c3b1f34a4748 |
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_SRC = $(wildcard $(srcdir)/*.f) \ $(wildcard $(srcdir)/*.c) \ $(wildcard $(srcdir)/*.cc) CRUFT_BASE = $(basename $(notdir $(CRUFT_SRC)) ) CRUFT_OBJ = $(addsuffix .o, $(CRUFT_BASE) ) ifeq ($(SHARED_LIBS), true) ifdef FPICFLAG CRUFT_PICOBJ := $(addprefix pic/, $(CRUFT_OBJ)) else CRUFT_PICOBJ := $(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