Fixes the following warning:
In file included from ../../../imports/x11/include/X11/Xutil.h:54,
from ../../../imports/x11/include/X11/Intrinsic.h:54,
from Action.c:64:
../../../imports/x11/include/X11/keysym.h:49:1: warning: "XK_MISCELLANY" redefined
<command-line>: warning: this is the location of the previous definition
<keysym.h> which includes all key symbols and loads <keysymdef.h>
is automaticlly included by the X Toolkit.
This patch removes #include <keysymdef.h> whenever not needed,
and adds #define XK_MISCALLANY in the source code where required.
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
XCOMM $XConsortium: Imakefile /main/7 1996/10/09 14:13:27 drk $
|
|
|
|
/* General case INCLUDES DEFINES LOCAL_LIBRARIES
|
|
* Each individual architecture may have more or less of the above.
|
|
* USE_libraryname in LOCAL_LIBRARIES is by default empty.
|
|
* It should be set when necessary to the real library macro name.
|
|
*/
|
|
DEFINES = -DCDE_INSTALLATION_TOP=\"$(CDE_INSTALLATION_TOP)\" -DI18N_MSG
|
|
INCLUDES = -I.
|
|
|
|
/* DEPLIBS contains the list of library depencies for a client.
|
|
* LOCAL_LIBRARIES contains the list of libraries on the link line.
|
|
* Generally, the dependency form of a library has DEP as a prefix.
|
|
* e.g. put $(XLIB) in LOCAL_LIBRARIES and $(DEPXLIB) in DEPLIBS.
|
|
* NOTE: if DEPLIBS is not set here, it is by default null and there
|
|
* are no library dependencies for clients.
|
|
* You cannot put -Llibpath into DEPLIBS. You must put actual
|
|
* paths to the library.
|
|
*/
|
|
DEPLIBS = DepDtClientLibs
|
|
LOCAL_LIBRARIES = DtClientLibs
|
|
SYS_LIBRARIES = DtClientSysLibs DtClientExtraLibs
|
|
|
|
#ifdef RsArchitecture
|
|
SYS_LIBRARIES = -lmsaa -liconv
|
|
#endif
|
|
|
|
#if defined (SunArchitecture)
|
|
SYS_LIBRARIES = -lintl -L/opt/SUNWspro/SC2.0.1 -lm -lgen -ldl -lC
|
|
#endif
|
|
|
|
PROGRAMS = dtpdm
|
|
|
|
SRCS = JobBox.c Main.c MainWindow.c \
|
|
PdmMsgs.c PdmOid.c PdmXp.c \
|
|
PrinterBox.c
|
|
|
|
OBJS = JobBox.o Main.o MainWindow.o \
|
|
PdmMsgs.o PdmOid.o PdmXp.o \
|
|
PrinterBox.o
|
|
|
|
ComplexProgramTarget($(PROGRAMS))
|
|
|