Print this page
6658907 digest(1) and mac(1) could benefit from being 64-bit programs

*** 17,57 **** # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # ! # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # ! # ident "@(#)Makefile 1.5 07/02/02 SMI" # ! PROG = digest - OBJS = digest.o - - SRCS = $(OBJS:.o=.c) - include ../../Makefile.cmd ! CFLAGS += $(CCVERBOSE) -D_FILE_OFFSET_BITS=64 ! LDLIBS += -lkmf -lpkcs11 -lcryptoutil .KEEP_STATE: ! all: $(PROG) ! $(PROG): $(OBJS) ! $(LINK.c) $(OBJS) -o $@ $(LDLIBS) $(DYNFLAGS) ! $(POST_PROCESS) ! install: all $(ROOTPROG) ! $(RM) $(ROOTBIN)/mac ! $(LN) $(ROOTPROG) $(ROOTBIN)/mac ! clean: ! $(RM) -f $(OBJS) $(PROG) ! lint: lint_SRCS include ../../Makefile.targ --- 17,63 ---- # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # ! # Copyright 2008 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # ! # ident "@(#)Makefile 1.6 08/03/20 SMI" # ! PROG= digest ! ROOTLINK= $(ROOTBIN)/mac ! DCFILE= $(PROG).dc include ../../Makefile.cmd ! SUBDIRS= $(MACH) ! $(BUILD64)SUBDIRS += $(MACH64) ! all := TARGET = all ! install := TARGET = install ! clean := TARGET = clean ! clobber := TARGET = clobber ! lint := TARGET = lint .KEEP_STATE: ! all clean clobber lint: $(SUBDIRS) ! install: $(SUBDIRS) ! -$(RM) $(ROOTPROG) $(ROOTLINK) ! -$(LN) $(ISAEXEC) $(ROOTPROG) ! -$(LN) $(ISAEXEC) $(ROOTLINK) ! $(SUBDIRS): FRC ! @cd $@; pwd; $(MAKE) $(TARGET) ! $(DCFILE): ! $(RM) messages.po ! $(XGETTEXT) $(XGETFLAGS) -t $(PROG).c ! $(SED) -e '/^domain/d' messages.po > $@ ! $(RM) messages.po ! FRC: include ../../Makefile.targ