Files
Arquivotheca.Solaris-2.5/cmd/ls/Makefile
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

39 lines
561 B
Makefile
Executable File

#
#ident "@(#)Makefile 1.10 94/12/20 SMI"
#
# Copyright (c) 1994 by Sun Microsystems, Inc.
# All rights reserved.
#
# cmd/ls/Makefile
PROG= ls
XPG4PROG= ls
include ../Makefile.cmd
SED= sed
DCFILE= $(PROG).dc
LDLIBS += -lgen -lw -lintl
CFLAGS += -v
$(XPG4) := CFLAGS += -DXPG4
.KEEP_STATE:
all: $(PROG) $(XPG4)
install: all $(ROOTPROG) $(ROOTXPG4PROG)
clean:
lint: lint_PROG
$(DCFILE):
$(RM) messages.po
$(COMPILE.cpp) $(PROG).c | \
$(XGETTEXT) $(XGETFLAGS) -t -
$(SED) -e '/^domain/d' messages.po > $@
$(RM) messages.po
include ../Makefile.targ