summaryrefslogtreecommitdiffstats
path: root/ds9/win
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-05-03 20:31:58 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-05-03 20:31:58 (GMT)
commitadeca10c9becffef5abd33c10f130caa1cefeabb (patch)
tree575cc50337bec0b961d7ff7b9a7570a076aef932 /ds9/win
parente688b7440be5d1629af26c141b0b1d38471c006a (diff)
downloadblt-adeca10c9becffef5abd33c10f130caa1cefeabb.zip
blt-adeca10c9becffef5abd33c10f130caa1cefeabb.tar.gz
blt-adeca10c9becffef5abd33c10f130caa1cefeabb.tar.bz2
add support for win32
Diffstat (limited to 'ds9/win')
-rw-r--r--ds9/win/Makefile.old120
1 files changed, 0 insertions, 120 deletions
diff --git a/ds9/win/Makefile.old b/ds9/win/Makefile.old
deleted file mode 100644
index 755d0db..0000000
--- a/ds9/win/Makefile.old
+++ /dev/null
@@ -1,120 +0,0 @@
-include ../../make.pkgs
-
-#--------------------------defines
-
-CFLAGS= -g -DSTATIC_BUILD -mnop-fun-dllimport -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I. -I../../include -I../../include/X11
-CXXFLAGS = $(CFLAGS)
-
-OBJS = ds9.o winMain.o ds9.res.o
-
-ZDIR = zipdir/zvfsmntpt
-FFILES = \
- $(ZDIR)/$(TCLVER) \
- $(ZDIR)/tcl8 \
- $(ZDIR)/$(TKVER) \
- $(ZDIR)/$(TKBLTDIR) \
- $(ZDIR)/$(TCLLIBVER) \
- $(ZDIR)/$(TKCONVER) \
- $(ZDIR)/$(XMLRPCVER) \
- $(ZDIR)/library \
- $(ZDIR)/msgs \
- $(ZDIR)/doc \
- $(ZDIR)/cmaps \
- $(ZDIR)/template
-
-ifdef FILTERCOMPILER
- FILES = $(FFILES) $(ZDIR)/$(FILTERCOMPILER)
-else
- FILES = $(FFILES)
-endif
-
-LIBS = \
- ../../lib/$(TKSAODIR)/libtksao10.a \
- ../../lib/$(TKSAODIR)/libfuntools.a \
- ../../lib/$(TKSAODIR)/libast.a \
- ../../lib/$(TKSAODIR)/libast_err.a \
- ../../lib/$(TKSAODIR)/libast_pal.a \
- ../../lib/$(TKHTMLDIR)/libtkhtml10.a \
- ../../lib/$(TKMPEGDIR)/libtkmpeg10.a \
- ../../lib/$(TCLXMLVER)/Tclxml32.a \
- ../../lib/$(TKTABLEVER)/Tktable210.a \
- ../../lib/$(TKIMGVER)/tkimgpng14.a \
- ../../lib/$(TKIMGVER)/pngtcl143.a \
- ../../lib/$(TKIMGVER)/tkimgtiff14.a \
- ../../lib/$(TKIMGVER)/tifftcl394.a \
- ../../lib/$(TKIMGVER)/tkimgjpeg14.a \
- ../../lib/$(TKIMGVER)/jpegtcl82.a \
- ../../lib/$(TKIMGVER)/tkimggif14.a \
- ../../lib/$(TKIMGVER)/tkimgwindow14.a \
- ../../lib/$(TKIMGVER)/zlibtcl125.a \
- ../../lib/$(TKIMGVER)/tkimg14.a \
- ../../lib/libtiff.a \
- ../../lib/$(TCLZVFSDIR/libtclzvfs10.a \
- ../../lib/libxpa.a \
- ../../lib/$(TKBLTDIR)/libtkblt30.a \
- ../../lib/libtk86.a \
- ../../lib/libtkstub86.a \
- ../../lib/libtcl86.a \
- ../../lib/libtclstub86.a
-
-#--------------------------main
-
-all: ds9.exe
-
-winMain.o : winMain.c
- $(CC) $(CFLAGS) -DTK_LOCAL_APPINIT=SAOAppInit \
- -DTK_LOCAL_MAIN_HOOK=SAOLocalMainHook -c winMain.c -o $@
-
-winMain.c : ../../$(TKDIR)/winMain.c
- cp ../../$(TKDIR)/winMain.c .
-
-ds9.exe : ds9Base.exe ds9.zip ../../bin/tcc
- $(RM) $@
- strip ds9Base.exe
- cp ds9Base.exe ds9.exe
- cp ds9.exe ../../bin/.
- cp ds9.zip ../../bin/.
-
-debug : ds9Base.exe ds9.zip ../../bin/tcc
- $(RM) $@
- cp ds9Base.exe ds9.exe
-
-ds9app : ds9.exe
- $(RM) -r ../../bin/ds9app
- mkdir ../../bin/ds9app
- cp ds9.exe ../../bin/ds9app/.
- cp ds9.zip ../../bin/ds9app/.
- cp -rp ../../bin/tcc ../../bin/ds9app/.
- cp ../../ds9/install.vbs ../../bin/ds9app/.
-
-ds9Base.exe: $(OBJS) $(LIBS)
- $(RM) $@
- $(CXX) ${OPTS} \
- -o $@ $(OBJS) $(LIBS) \
- -lxml2 -ljbig \
- -lws2_32 -limm32 -lcomctl32 -mwindows
-
-ds9.res.o: ds9.rc ds9.ico
- windres -o $@ --define STATIC_BUILD --include ../../$(TKDIR)/generic \
- --include ../../$(TCLDIR)/generic --include ../../$(TKDIR)/rc \
- --include win ds9.rc
-
-../../bin/tcc: ../../compilers/$(TCC)
- $(RM) -r $@
- cd ../../bin; unzip ../../compilers/$(TCC)
- chmod +x ../../bin/tcc/tcc.exe
- touch $@
-
-#--------------------------cleanup
-
-clean : FORCE
- cd ../library; $(MAKE) clean
- $(RM) core *~ *#
-
-distclean: FORCE
- cd ../library; $(MAKE) distclean
- $(RM) core *~ *# ds9Base.exe ds9.exe *.zip *.o
- $(RM) -r zipdir bin/tcc
-
-FORCE :
-