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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
XCOMM
XCOMM Motif
XCOMM
XCOMM Copyright (c) 1987-2012, The Open Group. All rights reserved.
XCOMM
XCOMM These libraries and programs are free software; you can
XCOMM redistribute them and/or modify them under the terms of the GNU
XCOMM Lesser General Public License as published by the Free Software
XCOMM Foundation; either version 2 of the License, or (at your option)
XCOMM any later version.
XCOMM
XCOMM These libraries and programs are distributed in the hope that
XCOMM they will be useful, but WITHOUT ANY WARRANTY; without even the
XCOMM implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
XCOMM PURPOSE. See the GNU Lesser General Public License for more
XCOMM details.
XCOMM
XCOMM You should have received a copy of the GNU Lesser General Public
XCOMM License along with these librararies and programs; if not, write
XCOMM to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
XCOMM Floor, Boston, MA 02110-1301 USA
XCOMM
XCOMM
XCOMM HISTORY
XCOMM
XCOMM $TOG: Imakefile /main/12 1997/09/18 10:59:30 csn $
#define IHaveSubdirs
#define PassCDebugFlags
SUBDIRS = lib
INCLUDES = -I. -I./lib -I../bitmaps -I.. -I$(TESTCOMSRC)
DEFINES = TestDefines
#ifdef Automation
LOCAL_LIBRARIES = lib/libTextA.a TestClientLibs
DEPLIBS = TestClientDepLibs lib/libTextA.a
#else
LOCAL_LIBRARIES = lib/libTextM.a TestClientLibs
DEPLIBS = TestClientDepLibs lib/libTextM.a
#endif
all:: lib
lib/libTextA.a lib/libTextM.a: lib
ForceSubdirs(lib)
NormalLibraryObjectRule()
RunTarget()
MSimpleProgramTarget(ScrollText1)
TestPPTarget(ScrollText1)
TestPPTarget(ScrollText1a)
MSimpleProgramTarget(ScrollText2)
TestPPTarget(ScrollText2)
MSimpleProgramTarget(ScrollText3)
TestPPTarget(ScrollText3a)
TestPPTarget(ScrollText3b)
TestPPTarget(ScrollText3c)
TestPPTarget(ScrollText3d)
TestPPTarget(ScrollText3e)
TestPPTarget(ScrollText3f)
TestPPTarget(ScrollText3g)
TestPPTarget(ScrollText3h)
MSimpleProgramTarget(ScrollText4)
TestPPTarget(ScrollText4)
MSimpleProgramTarget(Text1)
TestPPTarget(Text1)
MSimpleProgramTarget(Text2)
TestPPTarget(Text2)
MSimpleProgramTarget(Text3)
TestPPTarget(Text3)
MSimpleProgramTarget(Text4)
TestPPTarget(Text4)
MSimpleProgramTarget(Text5)
TestPPTarget(Text5)
MSimpleProgramTarget(Text6)
TestPPTarget(Text6)
MSimpleProgramTarget(Text7)
TestPPTarget(Text7)
MSimpleProgramTarget(Text8)
TestPPTarget(Text8)
MSimpleProgramTarget(Text9)
TestPPTarget(Text9)
MSimpleProgramTarget(Text10)
TestPPTarget(Text10)
MSimpleProgramTarget(Text11)
TestPPTarget(Text11)
MSimpleProgramTarget(Text12)
TestPPTarget(Text12)
MSimpleProgramTarget(Text13)
TestPPTarget(Text13)
MSimpleProgramTarget(TextField1)
TestPPTarget(TextField1)
MSimpleProgramTarget(TextField2)
TestPPTarget(TextField2)
MSimpleProgramTarget(TextField3)
TestPPTarget(TextField3)
MSimpleProgramTarget(TextField4)
TestPPTarget(TextField4)
MSimpleProgramTarget(TextField5)
TestPPTarget(TextField5)
MSimpleProgramTarget(TextWcs1)
TestPPTarget(TextWcs1)
MSimpleProgramTarget(TextWcs2)
TestPPTarget(TextWcs2)
MSimpleProgramTarget(TextFWcs1)
TestPPTarget(TextFWcs1)
MSimpleProgramTarget(TextFWcs2)
TestPPTarget(TextFWcs2)
MSimpleProgramTarget(TextPerf)
TestPPTarget(TextPerf)
SRCS= \
ScrollText1.c \
ScrollText2.c \
ScrollText3.c \
Text1.c \
Text2.c \
Text3.c \
Text4.c \
Text5.c \
Text6.c \
Text7.c \
Text8.c \
Text9.c \
Text10.c \
Text11.c \
Text12.c \
TextField1.c \
TextField2.c \
TextField3.c \
TextField4.c \
TextField5.c \
TextWcs1.c \
TextWcs2.c \
TextFWcs1.c \
TextFWcs2.c \
TextPerf.c
DependTarget ()
DependSubdirs($(SUBDIRS))
|