1*d1419d5aSNobutomo Nakano# 2*d1419d5aSNobutomo Nakano# CDDL HEADER START 3*d1419d5aSNobutomo Nakano# 4*d1419d5aSNobutomo Nakano# The contents of this file are subject to the terms of the 5*d1419d5aSNobutomo Nakano# Common Development and Distribution License (the "License"). 6*d1419d5aSNobutomo Nakano# You may not use this file except in compliance with the License. 7*d1419d5aSNobutomo Nakano# 8*d1419d5aSNobutomo Nakano# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*d1419d5aSNobutomo Nakano# or http://www.opensolaris.org/os/licensing. 10*d1419d5aSNobutomo Nakano# See the License for the specific language governing permissions 11*d1419d5aSNobutomo Nakano# and limitations under the License. 12*d1419d5aSNobutomo Nakano# 13*d1419d5aSNobutomo Nakano# When distributing Covered Code, include this CDDL HEADER in each 14*d1419d5aSNobutomo Nakano# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*d1419d5aSNobutomo Nakano# If applicable, add the following below this CDDL HEADER, with the 16*d1419d5aSNobutomo Nakano# fields enclosed by brackets "[]" replaced with your own identifying 17*d1419d5aSNobutomo Nakano# information: Portions Copyright [yyyy] [name of copyright owner] 18*d1419d5aSNobutomo Nakano# 19*d1419d5aSNobutomo Nakano# CDDL HEADER END 20*d1419d5aSNobutomo Nakano# 21*d1419d5aSNobutomo Nakano# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 22*d1419d5aSNobutomo Nakano# Use is subject to license terms. 23*d1419d5aSNobutomo Nakano# 24*d1419d5aSNobutomo Nakano 25*d1419d5aSNobutomo NakanoPROG=tzreload 26*d1419d5aSNobutomo Nakano 27*d1419d5aSNobutomo Nakanoinclude ../Makefile.cmd 28*d1419d5aSNobutomo Nakano 29*d1419d5aSNobutomo NakanoCPPFLAGS += -I../cron 30*d1419d5aSNobutomo Nakano 31*d1419d5aSNobutomo Nakano.KEEP_STATE: 32*d1419d5aSNobutomo Nakano 33*d1419d5aSNobutomo Nakanoall: $(PROG) 34*d1419d5aSNobutomo Nakano 35*d1419d5aSNobutomo Nakanoinstall: all $(ROOTSBINPROG) 36*d1419d5aSNobutomo Nakano $(RM) $(ROOTUSRSBIN)/$(PROG) 37*d1419d5aSNobutomo Nakano $(SYMLINK) ../../sbin/$(PROG) $(ROOTUSRSBIN)/$(PROG) 38*d1419d5aSNobutomo Nakano 39*d1419d5aSNobutomo Nakanoclean: 40*d1419d5aSNobutomo Nakano 41*d1419d5aSNobutomo Nakanolint: lint_PROG 42*d1419d5aSNobutomo Nakano 43*d1419d5aSNobutomo Nakanoinclude ../Makefile.targ 44