File: Imakefile

package info (click to toggle)
xfree86 3.3.2.3-2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 168,984 kB
  • ctags: 121,965
  • sloc: ansic: 1,157,712; sh: 14,822; asm: 14,676; tcl: 8,247; cpp: 4,317; yacc: 2,705; perl: 711; awk: 393; lex: 383; makefile: 353; sed: 57; csh: 5
file content (142 lines) | stat: -rw-r--r-- 2,786 bytes parent folder | download | duplicates (2)
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
XCOMM $XConsortium: Imakefile /main/7 1996/12/07 17:06:24 kaleb $

#if defined(SGIArchitecture) && (OSMajorVersion > 5)

/* Even though we want to build the distribution with -n32, Navigator 3.0 
 * binaries are still built on IRIX 5.2, which means we need to use the 
 * old style object format. This is a hack because this Imakefile gets
 * included too late to do this properly, that is to say that the
 * CCOPTIONS in Imake.tmpl gets the -n32 options that we don't want,
 * but the CCOPTIONS in Library.tmpl does get set correctly, and over-
 * rides the value. So it works, but it's not pretty.
 */
#undef sgiCCOptions
#define sgiCCOptions -xansi
        SRCS = XSecurity.c XAppgroup.c
        OBJS = XSecurity.o XAppgroup.o
    INCLUDES = -I$(XLIBSRC) -I$(EXTINCSRC)

NormalLibraryTarget(xplugin,$(OBJS))

#include <Library.tmpl>

XSecurity.c::
	RemoveFile($@)
	$(LN) $(XEXTLIBSRC)/$@ .

XAppgroup.c::
	RemoveFile($@)
	$(LN) $(XEXTLIBSRC)/$@ .

#else

#undef DependTarget
#define DependTarget() /**/
#undef ObjectCompile
#define ObjectCompile(options) $(_NULLCMD_)

XCOMM This is only necessary until Sun and HP ship libICE.
#if defined(SunArchitecture) || defined(HPArchitecture)
      ICEOBJS = accept.o authutil.o connect.o error.o getauth.o \
		iceauth.o listen.o listenwk.o locking.o misc.o \
		ping.o process.o protosetup.o register.o replywait.o \
		setauth.o shutdown.o transport.o watch.o
#endif
      EXTOBJS = XSecurity.o XAppgroup.o
         OBJS = $(ICEOBJS) $(EXTOBJS)

NormalLibraryTarget(xplugin,$(OBJS))

XCOMM This is only necessary until Sun and HP ship libICE.
#if defined(SunArchitecture) || defined(HPArchitecture)
accept.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

authutil.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

connect.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

error.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

getauth.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

iceauth.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

listen.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

listenwk.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

locking.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

misc.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

ping.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

process.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

protosetup.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

register.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

replywait.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

setauth.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

shutdown.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

transport.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .

watch.o::
	RemoveFile($@)
	$(LN) $(ICESRC)/$@ .
#endif

XSecurity.o::
	RemoveFile($@)
	$(LN) $(XEXTLIBSRC)/$@ .

XAppgroup.o::
	RemoveFile($@)
	$(LN) $(XEXTLIBSRC)/$@ .

clean::
	RemoveFiles($(OBJS))

DependTarget()

#endif