1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
# Copyright (c) 1991, Bob Schwartzkopf
#
# Permission to use, copy, modify and distribute this software and its
# documentation for any purpose is hereby granted without fee, provided
# that the above copyright notice appear in all copies and that both the
# copyright notice and this permission notice appear in supporting
# documentation, and that the name of the RAND Corporation not be used
# in advertising or publicity pertaining to distribution of the software
# without specific, written prior permission. The RAND Corporation
# makes no representations about the suitability of this software for
# any purpose. It is provided "as is" without express or implied
# warranty.
#
# The X Consortium, and any party obtaining a copy of these files from
# the X Consortium, directly or indirectly, is granted, free of charge, a
# full and unrestricted irrevocable, world-wide, paid up, royalty-free,
# nonexclusive right and license to deal in this software and
# documentation files (the "Software"), including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons who receive
# copies from any such party to do so. This license includes without
# limitation a license to do the foregoing actions under any patents of
# the party supplying this software to the X Consortium.
INCLUDES = -I$(TOP) -I$(TOP)/X11
DEPLIBS = XawClientDepLibs
LOCAL_LIBRARIES = XawClientLibs
SYS_LIBRARIES = -lrpcsvc
SRCS = xmeter.c
OBJS = xmeter.o
SHAR1 = patchlevel.h README README.DYNIX Imakefile xmeter.man \
XMeter.ad
SHAR2 = xmeter.c
#if HasVFork == NO
DEFINES = -Dvfork=fork
#endif
ComplexProgramTarget(xmeter)
InstallAppDefaults(XMeter)
xmeter.shar: $(SHAR1) $(SHAR2)
shar -o xmeter.shar1 $(SHAR1)
shar -o xmeter.shar2 $(SHAR2)
xmeter.tar.gz: $(SHAR1) $(SHAR2)
tar cf xmeter.tar $(SHAR1) $(SHAR2)
gzip xmeter.tar
|