prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = @bindir@ libdir = $(exec_prefix)/lib #libdir = @libdir@ includedir = @includedir@ datarootdir = @datarootdir@ datadir = @datadir@ mandir = @mandir@ include $(prefix)/make.pkgs 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 ID = $(shell finger $(shell whoami) | egrep -o 'Name: [a-zA-Z0-9 ]{1,}' | cut -d ':' -f 2 | xargs echo) ZDIR = zvfsmntpt OBJS = ds9.o tkAppInit.o FILES = \ $(ZDIR)/tcl$(TCL_VERSION) \ $(ZDIR)/tcl8 \ $(ZDIR)/tk$(TCL_VERSION) \ $(ZDIR)/tkblt \ $(ZDIR)/tcllib \ $(ZDIR)/tkcon \ $(ZDIR)/library \ $(ZDIR)/msgs \ $(ZDIR)/doc \ $(ZDIR)/cmaps \ $(ZDIR)/template #--------------------------main .NOTPARALLEL : .PHONY : debug 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 ../../bin/. debug : ds9base ds9.zip $(RM) ds9 cat ds9base ds9.zip > ds9 zip -A ds9 chmod 755 ds9 cp ds9 ../../bin/. else ds9 : ds9base ds9.zip $(RM) ds9 strip ds9base cp ds9base ds9 cp ds9 ../../bin/. cp ds9.zip ../../bin/. cd ../../bin; codesign -s "$(ID)" ds9 debug: ds9base ds9.zip $(RM) ds9 cp ds9base ds9 cp ds9 ../../bin/. cp ds9.zip ../../bin/. cd ../../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 : $(ZDIR) $(FILES) $(RM) $@ find $(ZDIR) -depth -name "CVS" -exec rm -r {} \; zip -r ds9.zip $(ZDIR) tkAppInit.o : tkAppInit.c $(COMPILE) -DTK_LOCAL_APPINIT=SAOAppInit \ -DTK_LOCAL_MAIN_HOOK=SAOLocalMainHook -c tkAppInit.c -o $@ tkAppInit.c : ../../tk$(TCL_VERSION)/unix/tkAppInit.c cp ../../tk$(TCL_VERSION)/unix/tkAppInit.c . $(ZDIR) : mkdir $@ $(ZDIR)/tcl$(TCL_VERSION) : $(prefix)/lib/tcl$(TCL_VERSION) $(RM) -r $@ cp -r $(prefix)/lib/tcl$(TCL_VERSION) $(ZDIR)/. $(ZDIR)/tcl8 : $(prefix)/lib/tcl8 $(RM) -r $@ cp -r $(prefix)/lib/tcl8 $(ZDIR)/. $(ZDIR)/tk$(TCL_VERSION) : $(prefix)/lib/tk$(TCL_VERSION) $(RM) -r $@ cp -r $(prefix)/lib/tk$(TCL_VERSION) $(ZDIR)/. rm -rf $(ZDIR)/tk$(TCL_VERSION)/images rm -rf $(ZDIR)/tk$(TCL_VERSION)/demos $(ZDIR)/tkblt : $(RM) -r $@ mkdir $(ZDIR)/tkblt cp ../../tkblt/library/graph.tcl $(ZDIR)/tkblt/. $(ZDIR)/tcllib : $(RM) -r $@ mkdir $(ZDIR)/tcllib cp -r ../../tcllib/modules/base64 $(ZDIR)/tcllib/. cp -r ../../tcllib/modules/ftp $(ZDIR)/tcllib/. cp -r ../../tcllib/modules/log $(ZDIR)/tcllib/. cp -r ../../tcllib/modules/textutil $(ZDIR)/tcllib/. cp -r ../../tcllib/modules/math $(ZDIR)/tcllib/. $(ZDIR)/tkcon : $(prefix)/lib/tkcon$(TKCONVER) $(RM) -r $@ cp -r $(prefix)/lib/tkcon$(TKCONVER) $@ $(ZDIR)/library : ../library/*.tcl $(RM) -r $@ cp -r ../library $(ZDIR)/. $(ZDIR)/msgs : ../msgs/* $(RM) -r $@ cp -r ../msgs $(ZDIR)/. $(ZDIR)/doc : ../doc/* ../doc/ref/* ../doc/user/* ../doc/release/* $(RM) -r $@ cd ..; find doc -name "*.html" | cpio -pdmuv unix/$(ZDIR) cd ..; find doc -name "*.gif" | cpio -pdmuv unix/$(ZDIR) cd ..; find doc -name "*.png" | cpio -pdmuv unix/$(ZDIR) $(ZDIR)/cmaps : ../cmaps/* $(RM) -r $@ cp -r ../cmaps $(ZDIR)/. $(ZDIR)/template : ../template/* $(RM) -r $@ cd ..; find template -name "*.tpl" | cpio -pdmuv unix/$(ZDIR) #--------------------------cleanup .PHONY : clean distclean clean : cd ../library; $(MAKE) clean $(RM) core *~ *# ds9base ds9 *.zip *.o $(RM) -r $(ZDIR) distclean: clean -rm -f Makefile config.cache config.log config.status -rm -rf autom4te.cache