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
|
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 $XConsortium: Imakefile /main/10 1995/07/13 18:43:08 drk $
INCLUDES = -I. -I$(MLIBSRC) -I../bitmaps -I../ -I$(TESTCOMSRC)
DEFINES = TestDefines
DEPLIBS = TestClientDepLibs
LOCAL_LIBRARIES = TestClientLibs
NormalLibraryObjectRule()
RunTarget()
MSimpleProgramTarget(Menu1)
TestPPTarget(Menu1)
TestPPTarget(Menu1a)
MSimpleProgramTarget(Menu2)
TestPPTarget(Menu2)
MSimpleProgramTarget(Menu3)
TestPPTarget(Menu3)
MSimpleProgramTarget(Menu4)
TestPPTarget(Menu4)
MSimpleProgramTarget(Menu5)
TestPPTarget(Menu5)
MSimpleProgramTarget(Menu6)
TestPPTarget(Menu6)
MSimpleProgramTarget(Menu7)
TestPPTarget(Menu7)
MSimpleProgramTarget(MenuBar1)
TestPPTarget(MenuBar1)
MSimpleProgramTarget(MenuBar2)
TestPPTarget(MenuBar2)
MSimpleProgramTarget(MenuBar3)
TestPPTarget(MenuBar3)
MSimpleProgramTarget(MenuGad1)
TestPPTarget(MenuGad1)
MSimpleProgramTarget(OptionMenu1)
TestPPTarget(OptionMenu1)
MSimpleProgramTarget(OptionMenu2)
TestPPTarget(OptionMenu2)
MSimpleProgramTarget(OptionMenu3)
TestPPTarget(OptionMenu3)
MSimpleProgramTarget(OptionMenu4)
TestPPTarget(OptionMenu4)
TestPPTarget(OptionMenu4a)
MSimpleProgramTarget(OptionMenu5)
TestPPTarget(OptionMenu5)
MSimpleProgramTarget(PopupMenu1)
TestPPTarget(PopupMenu1)
MSimpleProgramTarget(PopupMenu2)
TestPPTarget(PopupMenu2)
TestPPTarget(PopupMenu2a)
MSimpleProgramTarget(PopupMenu3)
TestPPTarget(PopupMenu3)
MSimpleProgramTarget(PopupMenu4)
TestPPTarget(PopupMenu4)
MSimpleProgramTarget(PopupMenu5)
TestPPTarget(PopupMenu5)
MSimpleProgramTarget(PopupMenu6)
TestPPTarget(PopupMenu6)
MSimpleProgramTarget(PopupMenu7)
TestPPTarget(PopupMenu7)
MSimpleProgramTarget(RowCol1)
TestPPTarget(RowCol1)
MSimpleProgramTarget(RowCol2)
TestPPTarget(RowCol2)
MSimpleProgramTarget(RowCol3)
TestPPTarget(RowCol3a)
TestPPTarget(RowCol3b)
TestPPTarget(RowCol3c)
TestPPTarget(RowCol3d)
TestPPTarget(RowCol3e)
SRCS= \
Menu1.c \
Menu2.c \
Menu3.c \
Menu4.c \
Menu5.c \
Menu6.c \
Menu7.c \
MenuBar1.c \
MenuBar2.c \
MenuBar3.c \
MenuGad1.c \
OptionMenu1.c \
OptionMenu2.c \
OptionMenu3.c \
OptionMenu4.c \
OptionMenu5.c \
PopupMenu1.c \
PopupMenu2.c \
PopupMenu3.c \
PopupMenu4.c \
PopupMenu5.c \
PopupMenu6.c \
PopupMenu7.c \
RowCol1.c \
RowCol2.c \
RowCol3.c
DependTarget ()
|