29 lines
470 B
Makefile
Executable File
29 lines
470 B
Makefile
Executable File
#
|
|
#ident "@(#)Makefile 1.3 92/12/15 SMI"
|
|
#
|
|
# Copyright (c) 1990 by Sun Microsystems, Inc.
|
|
#
|
|
# cmd/face/Makefile
|
|
|
|
# include global definitions
|
|
include ../../Makefile.master
|
|
|
|
SUBDIRS = src
|
|
|
|
all := TARGET = all
|
|
install := TARGET = install
|
|
clean := TARGET = clean
|
|
clobber := TARGET = clobber
|
|
lint := TARGET = lint
|
|
|
|
.KEEP_STATE:
|
|
|
|
all: $(SUBDIRS)
|
|
|
|
install clean clobber lint: $(SUBDIRS)
|
|
|
|
$(SUBDIRS): FRC
|
|
@cd $@; pwd; $(MAKE) $(TARGET)
|
|
|
|
FRC:
|