|
|
1.1 ! root 1: # ! 2: # Copyright (c) 1980 Regents of the University of California. ! 3: # All rights reserved. The Berkeley software License Agreement ! 4: # specifies the terms and conditions for redistribution. ! 5: # ! 6: # @(#)Makefile 5.5 (Berkeley) 9/5/85 ! 7: # ! 8: # Machine dependent routines for the VAX are located here ! 9: # ! 10: COMPAT= compat-4.1 ! 11: ALL= gen net stdio sys ${COMPAT} ! 12: TAGSFILE=tags ! 13: ! 14: vaxlib vaxlib_p: ${ALL} ! 15: -mkdir tmp ! 16: for i in ${ALL}; do (cd tmp; ar x ../$$i/$${i}lib); done ! 17: ar cr vaxlib `ls tmp/*.o | sort -t/ +1` ! 18: rm -f tmp/* ! 19: for i in ${ALL}; do (cd tmp; ar x ../$$i/$${i}lib_p); done ! 20: ar cr vaxlib_p `ls tmp/*.o | sort -t/ +1` ! 21: rm -rf tmp ! 22: ! 23: ${ALL}: FRC ! 24: cd $@; make ${MFLAGS} DEFS=${DEFS} ! 25: ! 26: FRC: ! 27: ! 28: tags: ! 29: for i in ${ALL}; do \ ! 30: (cd $$i; make ${MFLAGS} TAGSFILE=../${TAGSFILE} tags); \ ! 31: done ! 32: ! 33: clean: ! 34: for i in ${ALL}; do (cd $$i; make ${MFLAGS} clean); done ! 35: rm -f vaxlib vaxlib_p tmp/*.o; ! 36: -rmdir tmp ! 37: ! 38: depend: ! 39: for i in ${ALL}; do \ ! 40: (cd $$i; make ${MFLAGS} DEFS=${DEFS} depend); done
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.