Delete unneeded directory
[jabaws.git] / website / archive / binaries / mac / src / disembl / Tisean_3.0.1 / source_f / randomize / Makefile.in
diff --git a/website/archive/binaries/mac/src/disembl/Tisean_3.0.1/source_f/randomize/Makefile.in b/website/archive/binaries/mac/src/disembl/Tisean_3.0.1/source_f/randomize/Makefile.in
deleted file mode 100644 (file)
index 7e69a68..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-SHELL = /bin/sh
-
-prefix = @prefix@
-exec_prefix = @exec_prefix@
-BINDIR = ${exec_prefix}/@bindir@
-
-FC = @FC@
-FFLAGS = @FFLAGS@
-INSTALL = @INSTALL@
-LDFLAGS = @LDFLAGS@
-
-LOADLIBES = ../libtsa.a ../libsla.a
-
-SRC = randomize.f cost/$(COST).o cool/$(COOL).o perm/$(PERM).o
-TRG = randomize_$(COST)_$(COOL)_$(PERM)
-
-all install clean missing uninstall:
-       -$(MAKE) COST=auto      COOL=exp PERM=random $@-one
-       -$(MAKE) COST=autop     COOL=exp PERM=random $@-one
-       -$(MAKE) COST=spikeauto COOL=exp PERM=random $@-one
-       -$(MAKE) COST=spikespec COOL=exp PERM=event  $@-one
-       -$(MAKE) COST=uneven    COOL=exp PERM=random $@-one
-# add more similar lines for each module you have written
-# for example if you created cost/mycost.f
-#      -$(MAKE) COST=mycost  COOL=exp PERM=random $@-one
-
-install-one: $(TRG)
-       -$(INSTALL) $(TRG) $(BINDIR)
-
-missing-one:
-       -@$(TRG) -h 2>&1 | cat >>  ../../install.log
-       -@test -z "`$(TRG) -h 2>&1 | grep Usage`" \
-          && echo $(TRG) "(Wuppertal Fortran)" >>  ../../missing.log; :
-
-uninstall-one:
-       -@rm -f $(BINDIR)/$(TRG)
-
-clean-one: 
-       @rm -f $(TRG)
-
-all-one: $(TRG)
-
-$(TRG): $(SRC)
-       -$(FC) $(FFLAGS) $(SRC) -o $(TRG) $(LOADLIBES) $(LDFLAGS)
-
-cost/$(COST).o: cost/$(COST).f
-       $(FC) $(FFLAGS) -c cost/$(COST).f -o cost/$(COST).o
-
-cool/$(COOL).o: cool/$(COOL).f
-       $(FC) $(FFLAGS) -c cool/$(COOL).f -o cool/$(COOL).o
-
-perm/$(PERM).o: perm/$(PERM).f
-       $(FC) $(FFLAGS) -c perm/$(PERM).f -o perm/$(PERM).o