17c478bd9Sstevel@tonic-gate# 27c478bd9Sstevel@tonic-gate# CDDL HEADER START 37c478bd9Sstevel@tonic-gate# 47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the 50ea5e3a5Sjjj# Common Development and Distribution License (the "License"). 60ea5e3a5Sjjj# You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate# 87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate# and limitations under the License. 127c478bd9Sstevel@tonic-gate# 137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate# 197c478bd9Sstevel@tonic-gate# CDDL HEADER END 207c478bd9Sstevel@tonic-gate# 2124fe0b3bSjmcp# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 227c478bd9Sstevel@tonic-gate# Use is subject to license terms. 237c478bd9Sstevel@tonic-gate# 247c478bd9Sstevel@tonic-gate 257c478bd9Sstevel@tonic-gatePROG= syslogd 267c478bd9Sstevel@tonic-gateROTATESCRIPT= newsyslog 277c478bd9Sstevel@tonic-gateCONFIGFILE= syslog.conf 287c478bd9Sstevel@tonic-gateTXTS= syslog.conf 297c478bd9Sstevel@tonic-gatePRODUCT= $(PROG) $(ROTATESCRIPT) 307c478bd9Sstevel@tonic-gateOBJS= syslogd.o queue.o list.o conf.o 317c478bd9Sstevel@tonic-gateSRCS= $(OBJS:%.o=../%.c) 327c478bd9Sstevel@tonic-gateLLOBJS= $(OBJS:%.o=%.ll) 337c478bd9Sstevel@tonic-gate 347c478bd9Sstevel@tonic-gateinclude ../../Makefile.cmd 357c478bd9Sstevel@tonic-gate 360ea5e3a5Sjjj$(PROG) lint := LDLIBS += -lscf -lnsl 37*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-uninitialized 387c478bd9Sstevel@tonic-gateCPPFLAGS += -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT 390ea5e3a5SjjjCFLAGS += -DNDEBUG 400ea5e3a5Sjjj 410ea5e3a5Sjjj# there's some extra utility code defined but not used. 420ea5e3a5SjjjLINTFLAGS += -erroff=E_NAME_DEF_NOT_USED2 437c478bd9Sstevel@tonic-gate 447c478bd9Sstevel@tonic-gateVARSYSLOG= syslog 457c478bd9Sstevel@tonic-gateVARAUTHLOG= authlog 467c478bd9Sstevel@tonic-gateROOTVARLOGD= $(ROOT)/var/log 477c478bd9Sstevel@tonic-gate 487c478bd9Sstevel@tonic-gateROOTETCCONFIG= $(CONFIGFILE:%=$(ROOTETC)/%) 497c478bd9Sstevel@tonic-gateROOTLIBROTATE= $(ROTATESCRIPT:%=$(ROOTLIB)/%) 507c478bd9Sstevel@tonic-gateROOTVARSYSLOG= $(VARSYSLOG:%=$(ROOTVARLOGD)/%) 517c478bd9Sstevel@tonic-gateROOTVARAUTHLOG= $(VARAUTHLOG:%=$(ROOTVARLOGD)/%) 527c478bd9Sstevel@tonic-gate 537c478bd9Sstevel@tonic-gate$(ROOTUSRSBINPROG) := FILEMODE = 0555 547c478bd9Sstevel@tonic-gate$(ROOTUSRLIBROTATE) := FILEMODE = 0555 557c478bd9Sstevel@tonic-gate$(ROOTETCCONFIG) := FILEMODE = 0644 567c478bd9Sstevel@tonic-gate$(ROOTVARSYSLOG) := FILEMODE = 0644 577c478bd9Sstevel@tonic-gate$(ROOTVARAUTHLOG) := FILEMODE = 0600 587c478bd9Sstevel@tonic-gate 597c478bd9Sstevel@tonic-gate$(ROOTVARLOGD)/% : % 607c478bd9Sstevel@tonic-gate $(INS.file) 617c478bd9Sstevel@tonic-gate 627c478bd9Sstevel@tonic-gate$(ROOTETC)/%: ../% 637c478bd9Sstevel@tonic-gate $(INS.file) 647c478bd9Sstevel@tonic-gate 657c478bd9Sstevel@tonic-gate$(ROOTLIB)/%: ../% 667c478bd9Sstevel@tonic-gate $(INS.file) 677c478bd9Sstevel@tonic-gate 687c478bd9Sstevel@tonic-gate.KEEP_STATE: 697c478bd9Sstevel@tonic-gate 707c478bd9Sstevel@tonic-gate.SUFFIXES: $(SUFFIXES) .ll 717c478bd9Sstevel@tonic-gate 727c478bd9Sstevel@tonic-gate.c.ll: 737c478bd9Sstevel@tonic-gate $(CC) $(CFLAGS) $(CPPFLAGS) -Zll -o $@ $< 747c478bd9Sstevel@tonic-gate 757c478bd9Sstevel@tonic-gate.PARALLEL: $(OBJS) 767c478bd9Sstevel@tonic-gate 777c478bd9Sstevel@tonic-gate 787c478bd9Sstevel@tonic-gate$(VARSYSLOG) $(VARAUTHLOG): 797c478bd9Sstevel@tonic-gate $(ECHO) '\c' > $@ 807c478bd9Sstevel@tonic-gate 817c478bd9Sstevel@tonic-gate%.o: ../%.c 827c478bd9Sstevel@tonic-gate $(COMPILE.c) $< 837c478bd9Sstevel@tonic-gate 847c478bd9Sstevel@tonic-gate%.ll: ../%.c 857c478bd9Sstevel@tonic-gate $(CC) $(CFLAGS) $(CPPFLAGS) -Zll -o $@ $< 867c478bd9Sstevel@tonic-gate 877c478bd9Sstevel@tonic-gatesyslogd: $(OBJS) 887c478bd9Sstevel@tonic-gate $(LINK.c) -o $@ $(OBJS) $(LDLIBS) 897c478bd9Sstevel@tonic-gate $(POST_PROCESS) 907c478bd9Sstevel@tonic-gate 917c478bd9Sstevel@tonic-gatelogfiles: $(ROOTVARSYSLOG) $(ROOTVARAUTHLOG) 927c478bd9Sstevel@tonic-gate 937c478bd9Sstevel@tonic-gateclean: 947c478bd9Sstevel@tonic-gate $(RM) $(OBJS) $(LLOBJS) $(VARSYSLOG) $(VARAUTHLOG) 957c478bd9Sstevel@tonic-gate 967c478bd9Sstevel@tonic-gatelint: lint_SRCS 977c478bd9Sstevel@tonic-gate 987c478bd9Sstevel@tonic-gatelock_lint: $(LLOBJS) 997c478bd9Sstevel@tonic-gate 1007c478bd9Sstevel@tonic-gateinclude ../../Makefile.targ 101