42 lines
640 B
Makefile
Executable File
42 lines
640 B
Makefile
Executable File
#
|
|
#ident "@(#)Makefile 1.37 91/11/12 SMI"
|
|
#
|
|
# Copyright (c) 1990 by Sun Microsystems, Inc.
|
|
#
|
|
# cmd/sendmail/Makefile
|
|
#
|
|
# Makefile for top level sendmail source directory
|
|
#
|
|
|
|
SUBDIRS= lib src aux cf
|
|
|
|
|
|
include ../Makefile.cmd
|
|
|
|
ROOTDIRS= $(ROOT)/var/spool/mqueue
|
|
$(ROOTDIRS):= OWNER = root
|
|
|
|
all:= TARGET= all
|
|
install:= TARGET= install
|
|
clean:= TARGET= clean
|
|
clobber:= TARGET= clobber
|
|
lint:= TARGET= lint
|
|
|
|
.KEEP_STATE:
|
|
|
|
all: $(SUBDIRS)
|
|
|
|
clean lint: $(SUBDIRS)
|
|
|
|
clobber: clean $(SUBDIRS)
|
|
|
|
install: $(ROOTDIRS) $(SUBDIRS)
|
|
|
|
$(ROOTDIRS):
|
|
$(INS.dir)
|
|
|
|
$(SUBDIRS): FRC
|
|
@cd $@; pwd; $(MAKE) $(TARGET)
|
|
|
|
FRC:
|