Blob Blame History Raw
diff -udHrN -- a/install.sh b/install.sh
--- a/install.sh	2020-10-29 13:34:36.000000000 +0100
+++ b/install.sh	2020-10-31 10:27:18.241523653 +0100
@@ -17,7 +17,6 @@
 install -v -m 644 -s getdss/libpasgetdss.so.*  $destdir/lib/
 install -v -m 644 -s plan404/libpasplan404.so.*  $destdir/lib/
 install -v -m 644 -s wcs/libpaswcs.so.*  $destdir/lib/
-install -v -m 644 -s spice/libpasspice.so.*  $destdir/lib/
 install -v -m 644 changelog $destdir/share/doc/libpasastro/changelog
 install -v -m 644 copyright $destdir/share/doc/libpasastro/copyright
 
@@ -25,5 +24,4 @@
 ln -s libpasgetdss.so.1.1 libpasgetdss.so.1
 ln -s libpasplan404.so.1.1 libpasplan404.so.1
 ln -s libpaswcs.so.1.1 libpaswcs.so.1
-ln -s libpasspice.so.1.1 libpasspice.so.1
 
diff -udHrN -- a/Makefile b/Makefile
--- a/Makefile	2020-10-29 13:34:36.000000000 +0100
+++ b/Makefile	2020-10-31 10:27:47.025822758 +0100
@@ -9,30 +9,25 @@
 	$(MAKE) -C getdss -f Makefile.win32 all 
 	$(MAKE) -C plan404 -f Makefile.win32 all 
 	$(MAKE) -C wcs -f Makefile.win32 all
-	$(MAKE) -C spice -f Makefile.win32 all
  else
  ifeq ($(OS_TARGET),win64)
 	$(MAKE) -C getdss -f Makefile.win64 all 
 	$(MAKE) -C plan404 -f Makefile.win64 all 
 	$(MAKE) -C wcs -f Makefile.win64 all
-	$(MAKE) -C spice -f Makefile.win64 all
  else
  ifeq ($(CPU_TARGET),i386)
 	$(MAKE) -C getdss all arch_flags=-m32
 	$(MAKE) -C plan404 all arch_flags=-m32
 	$(MAKE) -C wcs all arch_flags=-m32
-	$(MAKE) -C spice all arch_flags=-m32
  else
  ifeq ($(CPU_TARGET),x86_64)
 	$(MAKE) -C getdss all arch_flags=-m64
 	$(MAKE) -C plan404 all arch_flags=-m64
 	$(MAKE) -C wcs all arch_flags=-m64
-	$(MAKE) -C spice all arch_flags=-m64
  else
 	$(MAKE) -C getdss all
 	$(MAKE) -C plan404 all
 	$(MAKE) -C wcs all
-	$(MAKE) -C spice all
  endif
  endif
  endif
@@ -43,18 +38,15 @@
         $(MAKE) -C getdss -f Makefile.win32 clean
         $(MAKE) -C plan404 -f Makefile.win32 clean
         $(MAKE) -C wcs -f Makefile.win32 clean
-        $(MAKE) -C spice -f Makefile.win32 clean
 else
 ifeq ($(OS_TARGET),win64)
         $(MAKE) -C getdss -f Makefile.win64 clean 
         $(MAKE) -C plan404 -f Makefile.win64 clean
         $(MAKE) -C wcs -f Makefile.win64 clean
-        $(MAKE) -C spice -f Makefile.win64 clean
 else
 	$(MAKE) -C getdss clean
 	$(MAKE) -C plan404 clean
 	$(MAKE) -C wcs clean
-	$(MAKE) -C spice clean
 endif
 endif