DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: M T

⟦25bec29f7⟧ TextFile

    Length: 1410 (0x582)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« 
        └─⟦036c765ac⟧ 
            └─⟦this⟧ »TeX3.0/Spiderweb/Makefile« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« 
        └─⟦c58930e5c⟧ 
            └─⟦this⟧ »TeX3.14/Spiderweb/Makefile« 

TextFile

# Copyright 1989 by Norman Ramsey, Odyssey Research Associates
# To be used for research purposes only
# For more information, see file COPYRIGHT in the parent directory

# This is a SUN OS 4 Makefile.  Sorry.  Makefiles in subdirectories
# should work under any reasonable Make.

MAKE=make $(MFLAGS)
DIRECTORIES=ada awk c c++ dijkstra larch penelope ssl doc master

# Removes excess junk from the world, except it doesn't remove
# common object files from ./master
# This destroys the sources, so don't make clean until you've made boot.
clean:
	@for i in $(DIRECTORIES); do \
		cd $$i; \
		echo making $$i clean...; \
		$(MAKE) clean ; \
		cd ..; \
	done
	rm -f *~
	@echo "All done."

# This creates the minimum sources in preparation for `make distribution'
source:
	cd c ; $(MAKE) source ; cd ..
	cd awk ; $(MAKE) source ; cd ..

# Put everything into a tar file.  Must `make source' first, and should clean
distribution:
#	$(MAKE) clean
#	$(MAKE) source
	tar cvhf spiderweb.tar README COPYRIGHT BUGS webkernel.tex \
                 Makefile $(DIRECTORIES)

# Used to bring up the system when first installing it.  Requires sources,
# either from the distribution tarfile or from `make source'
boot:
	cd c; $(MAKE) boot; cd ..
	cd awk; $(MAKE) boot; cd ..

# Make all known webs.  For lunatics only.
all:
	@for i in $(DIRECTORIES); do \
		cd $$i; \
		$(MAKE) web ; \
		cd ..; \
	done
	@echo "All done."