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

63 lines
980 B
Makefile
Executable File

#
#ident "@(#)Makefile 1.17 95/02/22 SMI"
#
# Copyright (c) 1995 by Sun Microsystems, Inc.
# All rights reserved.
#
# cmd/fs.d/cachefs/Makefile
#
SUBDIRS= common \
cfsadmin \
cfsfstype \
cfstagchk \
fsck \
mount \
umount \
cachefslog \
cachefswssize \
cachefsstat
# Zip Stuff
#SUBDIRS += cfscowchk \
# cfscowchk \
# cfscvtmnt \
# cfslu \
# cfspin \
# cfsunpin
all := TARGET= all
install := TARGET= install
clean := TARGET= clean
clobber := TARGET= clobber
lint := TARGET= lint
# include Makefile.cmd and Makefile.targ for _msg target
include ../../Makefile.cmd
POFILE= cachefs.po
GREP= grep
SED= sed
.KEEP_STATE:
all install clean clobber lint: $(SUBDIRS)
$(SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
catalog: $(POFILE)
$(POFILE):
$(RM) messages.po
$(XGETTEXT) $(XGETFLAGS) `$(GREP) -l gettext */*.[ch]`
$(SED) "/^domain/d" < messages.po > $@
$(RM) messages.po
local_clobber:
$(RM) $(CLOBBERFILES)
FRC:
include ../../Makefile.targ