|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: M T
Length: 1694 (0x69e) Types: TextFile Names: »Makefile«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦2fafebccf⟧ »EurOpenD3/mail/smail3.1.19.tar.Z« └─⟦bcd2bc73f⟧ └─⟦this⟧ »samples/Makefile«
#!/bin/make -f # @(#)Makefile 1.2 6/15/88 23:36:06 # Makefile for the samples directory in the smail source tree # # Copyright (C) 1987, 1988 Ronald S. Karr and Landon Curt Noll # # See the file COPYING, distributed with smail, for restriction # and warranty information. SHELL=/bin/sh MAKE=make GET=sccs get AR=ar LINT=lint CC=cc CLEAN=sccs clean MK=${MAKE} -${MAKEFLAGS} SRC_PREFIX= ROOT=.. SUB_DIRS=generic queryprog MISCSRC=Makefile SRC=${MISCSRC} all: @for i in ${SUB_DIRS}; do \ echo "Build targets under ${SRC_PREFIX}$$i ..."; \ (cd $$i; ${MK} SRC_PREFIX=${SRC_PREFIX}$$i/); \ done # $(MAKE) sources: ${SRC} @for i in ${SUB_DIRS}; do \ echo "Get sources under ${SRC_PREFIX}$$i ..."; \ (cd $$i; ${MK} SRC_PREFIX=${SRC_PREFIX}$$i/ sources); \ done # $(MAKE) ${SRC}: ${GET} $@ names: @for i in ${SRC}; do echo ${SRC_PREFIX}$$i; done @for i in ${SUB_DIRS}; do \ (cd $$i; ${MK} SRC_PREFIX=${SRC_PREFIX}$$i/ names); \ done # $(MAKE) depend: @for i in ${SUB_DIRS}; do \ echo "Make dependencies under ${SRC_PREFIX}$$i ..."; \ (cd $$i; ${MK} SRC_PREFIX=${SRC_PREFIX}$$i/ clean); \ done # $(MAKE) install: clean: rm -f core a.out @for i in ${SUB_DIRS}; do \ echo "Clean under ${SRC_PREFIX}$$i ..."; \ (cd $$i; ${MK} SRC_PREFIX=${SRC_PREFIX}$$i/ clean); \ done # $(MAKE) clobber: rm -f core a.out @for i in ${SUB_DIRS}; do \ echo "Clobber under ${SRC_PREFIX}$$i ..."; \ (cd $$i; ${MK} SRC_PREFIX=${SRC_PREFIX}$$i/ clobber); \ done # $(MAKE) nuke: rm -f core a.out -${CLEAN} -${GET} Makefile @for i in ${SUB_DIRS}; do \ echo "Nuke under ${SRC_PREFIX}$$i ..."; \ (cd $$i; ${MK} SRC_PREFIX=${SRC_PREFIX}$$i/ nuke); \ done # $(MAKE)