Makefile revision 10d63b7db37a83b39c7f511cf9426c9d03ea0760
353N/A#
353N/A# This file and its contents are supplied under the terms of the
353N/A# Common Development and Distribution License ("CDDL"), version 1.0.
353N/A# You may only use this file in accordance with the terms of version
353N/A# 1.0 of the CDDL.
353N/A#
353N/A# A full copy of the text of the CDDL should have accompanied this
353N/A# source. A copy of the CDDL is also available via the Internet at
353N/A# http://www.illumos.org/license/CDDL.
353N/A#
353N/A
353N/A# Copyright 2015, Richard Lowe.
353N/A
353N/ASUBDIRS=bin \
353N/A lib
353N/A
353N/Aall := TARGET = all
353N/Ainstall := TARGET = install
353N/Aclean := TARGET = clean
353N/Aclobber := TARGET = clobber
353N/Alint := TARGET = lint
353N/A
2695N/A.KEEP_STATE:
353N/A
353N/Abin: lib
353N/A
353N/Aall clean clobber lint install: $(SUBDIRS)
2695N/A
2695N/A$(SUBDIRS): FRC
353N/A @cd $@; pwd; $(MAKE) $(TARGET)
353N/A
2695N/AFRC:
618N/A