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 - download
Index: ┃ M T

⟦b6e053138⟧ TextFile

    Length: 1256 (0x4e8)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec8/mcp/Makefile« 

TextFile

all:
	(cd man; time make -k)
	(cd help; time make -k)
	(cd src; time make -k depend mcp)

install:	install-man install-help install-mcp

install-man:
	@echo Manuals...
	(cd man; time make -k install)
	/etc/catman -w
install-help:
	@echo Help pages...
	(cd help; time make -k install)
install-mcp:
	@echo Mcp...
	(cd src; time make -k install)

clean:
	(cd man; make clean)
	(cd help; make clean)
	(cd src; make clean)

tar:
	@echo Making tar file of mcp paraphernalia, etc....
	@tar cvpf MCP.tar Copyright man/Copyright src/Copyright\
		help/Copyright README Makefile Installation Futuribles\
		src/Lint src/nitpick src/*.c src/*.h src/Makefile\
		man/Makefile man/*.n\
		help/Makefile help/*.n\
		misc

shar:
	@echo Making shars of mcp paraphernalia...
	@echo 'mkdir man help misc src src/Lint' > MCP.1
	@shar -cv -p X Copyright man/Copyright src/Copyright\
		help/Copyright README Makefile Installation Futuribles\
		man/Makefile man/*.n >> MCP.1
	@shar -cv -p X help/Makefile help/*.n misc/* > MCP.2
	@shar -cv -p X src/[a-b]*.c > MCP.3
	@shar -cv -p X src/[c]*.c > MCP.4
	@shar -cv -p X src/[d-f]*.c > MCP.5
	@shar -cv -p X src/[g-l]*.c > MCP.6
	@shar -cv -p X src/[m-t]*.c > MCP.7
	@shar -cv -p X src/[u-z]*.c src/*.h src/Makefile src/nitpick > MCP.8