/usr/lib/xtrkcad/demos/Makefile is in xtrkcad 1:4.0.2-2+b1.
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 91 92 93 94 95 96 | #
# $Header: /cvsroot/xtrkcad-fork/xtrkcad/app/lib/demos/Makefile,v 1.1 2005/12/07 15:47:43 rc-flyer Exp $
#
CC = gcc
VER = d
COPTS = -Wall
CINCLS = -I/usr/openwin/include
PACKAGEDIR = ./package
VER=0.1
all: debug
MISC = Makefile
DEMOS = \
dmadjend.xtr \
dmbench.xtr \
dmcancel.xtr \
dmcircle.xtr \
dmconn1.xtr \
dmconn2.xtr \
dmctlpnl.xtr \
dmcrvtrk.xtr \
dmdelund.xtr \
dmdialog.xtr \
dmdimlin.xtr \
dmease.xtr \
dmelev.xtr \
dmexcept.xtr \
dmextend.xtr \
dmintro.xtr \
dmhelix.xtr \
dmflip.xtr \
dmgroup.xtr \
dmhndld.xtr \
dmjcir.xtr \
dmjnabut.xtr \
dmjncs.xtr \
dmjnmove.xtr \
dmjnss.xtr \
dmjntt.xtr \
dmlines.xtr \
dmlines2.xtr \
dmmouse.xtr \
dmmovabt.xtr \
dmnotes.xtr \
dmparall.xtr \
dmplymod.xtr \
dmprof.xtr \
dmrescal.xtr \
dmrotate.xtr \
dmruler.xtr \
dmselect.xtr \
dmsplit.xtr \
dmstrtrk.xtr \
dmtbledg.xtr \
dmtodes.xtr \
dmtosel.xtr \
dmtotrim.xtr \
dmtoyard.xtr \
dmtrkwid.xtr \
dmtrntab.xtr
SRCS = $(MISC) $(DEMOS)
update: debug product
debug:
@echo nothing to do
product:
@echo nothing to do
checked:
@echo nothing to do
tar:
tar cvf xtclib.tar $(SRCS)
tag:
if [ "$(TAG)"x = "x" ] ; then echo define TAG ; else rcs -N$(TAG):HEAD $(SRCS) ; fi
fetch:
if [ "$(TAG)"x != "x" ] ; then TAG=-r$(TAG) ; fi ;\
co $$TAG $(SRCS)
src:
@echo $(SRCS)
rcssrc:
@echo $(SRCS)
demofiles:
@echo $(DEMOS)
|