summaryrefslogtreecommitdiffstats
path: root/ds9/unix/Makefile.in
blob: 892112de787e8e79ec3cf3dc15bf75fce1672ecc (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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
prefix		= @prefix@
exec_prefix	= @exec_prefix@

bindir		= @bindir@
libdir		= $(exec_prefix)/lib
#libdir		= @libdir@
includedir	= @includedir@
datarootdir	= @datarootdir@
datadir		= @datadir@
mandir		= @mandir@

TCLSH_PROG	= @TCLSH_PROG@

TCL_VERSION	= @TCL_VERSION@
TCL_LIB_SPEC	= @TCL_LIB_SPEC@
TCL_STUB_LIB_SPEC= @TCL_STUB_LIB_SPEC@
TK_LIBS		= @TK_LIBS@
TK_LIB_SPEC	= @TK_LIB_SPEC@
TK_STUB_LIB_SPEC= @TK_STUB_LIB_SPEC@

tifftcl_LIB_SPEC= @tifftcl_LIB_SPEC@
pngtcl_LIB_SPEC	= @pngtcl_LIB_SPEC@
jpegtcl_LIB_SPEC= @jpegtcl_LIB_SPEC@
zlibtcl_LIB_SPEC= @zlibtcl_LIB_SPEC@

tkimg_LIB_SPEC	= @tkimg_LIB_SPEC@
tkimggif_LIB_SPEC= @tkimggif_LIB_SPEC@
tkimgjpeg_LIB_SPEC= @tkimgjpeg_LIB_SPEC@
tkimgpng_LIB_SPEC= @tkimgpng_LIB_SPEC@
tkimgtiff_LIB_SPEC= @tkimgtiff_LIB_SPEC@
tkimgwindow_LIB_SPEC= @tkimgwindow_LIB_SPEC@

tclcheckdns_LIB_SPEC= @tclcheckdns_LIB_SPEC@
tcliis_LIB_SPEC	= @tcliis_LIB_SPEC@
tclsignal_LIB_SPEC= @tclsignal_LIB_SPEC@
tclxml_LIB_SPEC	= @tclxml_LIB_SPEC@
tclzvfs_LIB_SPEC= @tclzvfs_LIB_SPEC@

tkblt_LIB_SPEC	= @tkblt_LIB_SPEC@
tkhtml1_LIB_SPEC= @tkhtml1_LIB_SPEC@
tkmpeg_LIB_SPEC	= @tkmpeg_LIB_SPEC@
tksao_LIB_SPEC	= @tksao_LIB_SPEC@
tktable_LIB_SPEC= @tktable_LIB_SPEC@

CC		= @CC@
CFLAGS_DEFAULT	= @CFLAGS_DEFAULT@
CFLAGS_WARNING	= @CFLAGS_WARNING@
EXEEXT		= @EXEEXT@
OBJEXT		= @OBJEXT@

INCLUDES	= @PKG_INCLUDES@ @TCL_INCLUDES@ @TK_INCLUDES@ @TK_XINCLUDES@

PKG_CFLAGS	= @PKG_CFLAGS@
DEFS		= @DEFS@ $(PKG_CFLAGS)

CPPFLAGS	= @CPPFLAGS@
LIBS		= @PKG_LIBS@ @LIBS@
CFLAGS		= @CFLAGS@
COMPILE		= $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)

system		= @system@

.SUFFIXES: .c .C .$(OBJEXT)

.c.@OBJEXT@:
	$(COMPILE) -c `@CYGPATH@ $<` -o $@

.C.@OBJEXT@:
	$(COMPILE) -c `@CYGPATH@ $<` -o $@

#--------------------------defines

APPDIR	= zvfsmntpt
LIBDIR= $(APPDIR)

ID	= $(shell finger $(shell whoami) | egrep -o 'Name: [a-zA-Z0-9 ]{1,}' | cut -d ':' -f 2 | xargs echo)

OBJS	= ds9.o tkAppInit.o

#--------------------------main

.NOTPARALLEL :
.PHONY	: ds9 debug appdir framework tcl tk tcllib tkcon tkblt

ifeq (,$(findstring Darwin,$(system)))

ds9	: ds9base ds9.zip
	$(RM) ds9
	strip ds9base
	cat ds9base ds9.zip > ds9
	zip -A ds9
	chmod 755 ds9
	cp ds9 $(prefix)/bin/.

debug	: ds9base ds9.zip
	$(RM) ds9
	cat ds9base ds9.zip > ds9
	zip -A ds9
	chmod 755 ds9
	cp ds9 $(prefix)/bin/.

else

ds9	: ds9base ds9.zip
	$(RM) ds9
	strip ds9base
	cp ds9base ds9
	cp ds9 $(prefix)/bin/.
	cp ds9.zip $(prefix)/bin/.
	cd $(prefix)/bin; codesign -s "$(ID)" ds9

debug: ds9base ds9.zip
	$(RM) ds9
	cp ds9base ds9
	cp ds9 $(prefix)/bin/.
	cp ds9.zip $(prefix)/bin/.
	cd $(prefix)/bin; codesign -s "$(ID)" ds9

endif

ds9base	: $(OBJS)
	$(RM) $@
	$(CC) $(CFLAGS) -o $@ \
	$(OBJS) \
	$(libdir)/libfuntools.a \
	$(libdir)/libast.a \
	$(libdir)/libast_err.a \
	$(libdir)/libast_pal.a \
	$(libdir)/libxpa.a \
	$(jpegtcl_LIB_SPEC) \
	$(pngtcl_LIB_SPEC) \
	$(tifftcl_LIB_SPEC) \
	$(zlibtcl_LIB_SPEC) \
	$(tclcheckdns_LIB_SPEC) \
	$(tcliis_LIB_SPEC) \
	$(tclsignal_LIB_SPEC) \
	$(tclxml_LIB_SPEC) \
	$(tclzvfs_LIB_SPEC) \
	$(tkblt_LIB_SPEC) \
	$(tkhtml1_LIB_SPEC) \
	$(tkimg_LIB_SPEC) \
	$(tkimggif_LIB_SPEC) \
	$(tkimgjpeg_LIB_SPEC) \
	$(tkimgpng_LIB_SPEC) \
	$(tkimgtiff_LIB_SPEC) \
	$(tkimgwindow_LIB_SPEC) \
	$(tkmpeg_LIB_SPEC) \
	$(tksao_LIB_SPEC) \
	$(tktable_LIB_SPEC) \
	$(TK_STUB_LIB_SPEC) $(TK_LIB_SPEC) \
	$(TCL_STUB_LIB_SPEC) $(TCL_LIB_SPEC) \
	$(TK_LIBS) \
	$(LIBS)

ds9.zip	: appdir framework tcl tk tcllib tkblt tkcon
	$(RM) $@
	find $(APPDIR) -depth -name "CVS" -exec rm -r {} \;
	zip -r ds9.zip $(APPDIR)

tkAppInit.o : tkAppInit.c
	$(COMPILE) -DTK_LOCAL_APPINIT=SAOAppInit \
	-DTK_LOCAL_MAIN_HOOK=SAOLocalMainHook -c tkAppInit.c -o $@

tkAppInit.c : $(prefix)/tk$(TCL_VERSION)/unix/tkAppInit.c
	cp $(prefix)/tk$(TCL_VERSION)/unix/tkAppInit.c .

appdir : 
	rm -rf $(APPDIR)
	mkdir $(APPDIR)

tcl	: $(prefix)/lib/tcl$(TCL_VERSION)
	cp -r $(prefix)/lib/tcl$(TCL_VERSION) $(APPDIR)/.
	cp -r $(prefix)/lib/tcl8 $(APPDIR)/.

tk	: $(prefix)/lib/tk$(TCL_VERSION)
	cp -r $(prefix)/lib/tk$(TCL_VERSION) $(APPDIR)/.
	rm -rf $(APPDIR)/tk$(TCL_VERSION)/images
	rm -rf $(APPDIR)/tk$(TCL_VERSION)/demos

include ../make.include