blob: 15df9d3b8861f6199eb5b705ea32820ae2479617 (
plain)
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
|
XCOMM $XConsortium: Imakefile,v 1.28 93/07/29 14:01:59 rws Exp $
DEPLIBS = XawClientDepLibs
LOCAL_LIBRARIES = XawClientLibs
#if defined(SunArchitecture) && defined(i386Architecture)
SYS_LIBRARIES = -lkvm
#endif
#if SystemV4
#ifdef SonyArchitecture
SYS_LIBRARIES = -lmld
#else
SYS_LIBRARIES = -lelf
#endif
#endif
#ifdef SGIArchitecture
SYS_LIBRARIES = -lmld
#endif
#ifdef BSD386Architecture
SYS_LIBRARIES = -lutil -lkvm
#endif
SRCS = xload.c get_load.c
OBJS = xload.o get_load.o
OSMAJORVERSION = OSMajorVersion
OSMINORVERSION = OSMinorVersion
DEFINES = -DOSMAJORVERSION=$(OSMAJORVERSION) -DOSMINORVERSION=$(OSMINORVERSION)
AllTarget(xload)
NormalProgramTarget(xload,$(OBJS),$(DEPLIBS),$(LOCAL_LIBRARIES),NullParameter)
#ifndef OSF1Architecture
InstallProgramWithFlags(xload,$(BINDIR),$(INSTKMEMFLAGS))
#else
InstallProgram(xload,$(BINDIR))
#endif
InstallAppDefaults(XLoad)
InstallManPage(xload,$(MANDIR))
DependTarget()
|