/usr/share/dx/samples/util/Makefile.sample is in dxsamples 4.2.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | #######################################################################
## I.B.M. CONFIDENTIAL ##
## xxxx-yyy (c) COPYRIGHT IBM CORP. 1991 ALL RIGHTS RESERVED. ##
## ##
## (I.B.M. CONFIDENTIAL-RESTRICTED when combined with the aggregated ##
## OCO source materials for this program.) ##
## OCO SOURCE MATERIAL ##
## LICENSED MATERIALS-PROPERTY OF IBM. ##
## ##
#######################################################################
#
SHELL=/bin/sh
DIRS = \
dxf \
plot3d \
mpeg \
fluent
DXF_FILES = \
MANIFEST \
Makefile \
README \
balloon.dxf \
colors.c \
common.c \
dx.c \
dxf.c \
dxf.h \
dxf_r12.txt \
entity.c \
entity.h \
header.c \
ignored.c \
output_funcs.c \
read.c \
snag_funcs.c \
table.c \
tree.c \
x29.dxf
FLUENT_FILES = Fluent2DX.c README
PLOT3D_FILES = Plot3DtoDX.c README
MPEG_FILES = README write_yuv.net write_yuv.cfg default.param
co:
for i in $(DIRS) ; \
do \
if [ ! -d $$i ]; then \
mkdir $$i ; \
fi; \
cd $$i ; \
if [ ! -r RCS ]; then \
ln -s /usr/svs/master/samples/util/$$i/RCS . ; \
fi; \
cd .. ; \
done
cd mpeg; \
for i in $(MPEG_FILES) ; \
do \
if [ -f $$i ]; \
then find RCS/$$i,v -newer $$i -exec co $(COFLAGS) $$i \;; \
else co $(COFLAGS) $$i ; \
fi; \
done
cd dxf; \
for i in $(DXF_FILES) ; \
do \
if [ -f $$i ]; \
then find RCS/$$i,v -newer $$i -exec co $(COFLAGS) $$i \;; \
else co $(COFLAGS) $$i ; \
fi; \
done
cd fluent; \
for i in $(FLUENT_FILES) ; \
do \
if [ -f $$i ]; \
then find RCS/$$i,v -newer $$i -exec co $(COFLAGS) $$i \;; \
else co $(COFLAGS) $$i ; \
fi; \
done
cd plot3d; \
for i in $(PLOT3D_FILES) ; \
do \
if [ -f $$i ]; \
then find RCS/$$i,v -newer $$i -exec co $(COFLAGS) $$i \;; \
else co $(COFLAGS) $$i ; \
fi; \
done
|