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

43 lines
777 B
Makefile
Executable File

#
# ident "@(#)Makefile 1.9 94/08/30 SMI" /* SVr4.0 1.13 */
#
# Copyright (c) 1990 by Sun Microsystems, Inc.
#
# cmd/lp/lib/class/Makefile
#
LIBRARY = liblpcls.a
OBJECTS = delclass.o \
freeclass.o \
getclass.o \
putclass.o
include ../../../../lib/Makefile.lib
include ../../Makefile.lp
CPPFLAGS = -I../../include $(CPPFLAGS.master)
.KEEP_STATE:
# for messaging catalog
#
POFILE= class.po
SRCS= $(OBJECTS:%.o=%.c)
XGETFLAGS += -a -x $(LPROOT)/lp.xcl
catalog: $(POFILE)
$(POFILE): $(SRCS)
$(RM) $@
$(COMPILE.cpp) $(SRCS) > $(POFILE).i
$(XGETTEXT) $(XGETFLAGS) $(POFILE).i
sed "/^domain/d" messages.po > $@
$(RM) messages.po $(POFILE).i
all install : $(LIBS)
strip lint :
include ../../../../lib/Makefile.targ