Print this page
5468 Missing dependencies in lib/Makefile
5709 Add binary compatibility with Solaris 10 update 10.
*** 20,29 ****
--- 20,31 ----
#
#
# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
+ # Copyright 2015 RackTop Systems.
+ #
PROG= vtdaemon vtinfo vtxlock
VTDAEMON_SRC= vtdaemon.c
VTINFO_SRC= vtinfo.c
*** 31,58 ****
include ../Makefile.cmd
CFLAGS += $(CCVERBOSE)
CERRWARN += -_gcc=-Wno-uninitialized
! LDLIBS += -lpam -lbsm
.KEEP_STATE:
all: $(PROG)
vtdaemon: $(VTDAEMON_SRC)
$(LINK.c) -o $@ $(VTDAEMON_SRC) $(LDLIBS)
$(POST_PROCESS)
vtinfo: $(VTINFO_SRC)
! $(LINK.c) -o $@ $(VTINFO_SRC)
$(POST_PROCESS)
install: all $(ROOTLIBPROG)
clean:
! lint:
$(LINT.c) $(VTDAEMON_SRC) $(LDLIBS)
! $(LINT.c) $(VTINFO_SRC)
include ../Makefile.targ
--- 33,65 ----
include ../Makefile.cmd
CFLAGS += $(CCVERBOSE)
CERRWARN += -_gcc=-Wno-uninitialized
! vtdaemon := LDLIBS += -lpam -lbsm
! lint_vtdaemon := LDLIBS += -lpam -lbsm
.KEEP_STATE:
all: $(PROG)
vtdaemon: $(VTDAEMON_SRC)
$(LINK.c) -o $@ $(VTDAEMON_SRC) $(LDLIBS)
$(POST_PROCESS)
vtinfo: $(VTINFO_SRC)
! $(LINK.c) -o $@ $(VTINFO_SRC) $(LDLIBS)
$(POST_PROCESS)
install: all $(ROOTLIBPROG)
clean:
! lint: lint_vtdaemon lint_vtinfo
!
! lint_vtdaemon:
$(LINT.c) $(VTDAEMON_SRC) $(LDLIBS)
!
! lint_vtinfo:
! $(LINT.c) $(VTINFO_SRC) $(LDLIBS)
include ../Makefile.targ