source: trunk/athena/bin/rkinit/Imakefile @ 2276

Revision 2276, 622 bytes checked in by qjb, 35 years ago (diff)
Initial revision
Line 
1#
2# $Header: /afs/dev.mit.edu/source/repository/athena/bin/rkinit/Imakefile,v 1.1 1989-11-13 16:22:46 qjb Exp $
3# $Source: /afs/dev.mit.edu/source/repository/athena/bin/rkinit/Imakefile,v $
4# $Author: qjb $
5#
6# Makefile for all of rkinit
7#
8
9DESTDIR=
10DIRS= include lib rkinitd rkinit man
11
12all: depend
13        for i in $(DIRS); do \
14                (cd $$i; make ${MFLAGS} all); done
15
16depend:
17        for i in $(DIRS); do \
18                (cd $$i; make ${MFLAGS} depend); done
19
20install: all
21        for i in $(DIRS); do \
22                (cd $$i; make ${MFLAGS} DESTDIR=$(DESTDIR) install); done
23
24clean:
25        rm -f core *~; \
26        for i in $(DIRS); do \
27                (cd $$i; make ${MFLAGS} clean); done
Note: See TracBrowser for help on using the repository browser.