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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
|
#-----------------------------------------------------------------------------
# GNU makefile for building WCSLIB 7.7 and its test suite.
#
# Summary of the main targets
# ---------------------------
# build: Build the library.
#
# clean: Delete intermediate object files.
#
# cleaner: clean, and also delete the test executables.
#
# cleanest (distclean or realclean): cleaner, and also delete the object
# library and the C source files generated by 'flex'.
#
# check (or test): Compile and run the test programs. By default they are
# executed in batch mode, and non-graphical tests only report
# "PASS" on success. Use
#
# make MODE=interactive check
#
# to run them interactively with full diagnostic output. To skip
# graphical tests even if PGPLOT is available, use
#
# make CHECK=nopgplot check
#
# tests: Compile the test programs (but don't run them).
#
# Notes:
# 1) If you need to make changes then preferably modify ../makedefs.in
# instead and re-run configure.
#
# Author: Mark Calabretta, Australia Telescope National Facility, CSIRO.
# http://www.atnf.csiro.au/people/Mark.Calabretta
# $Id: GNUmakefile,v 7.7 2021/07/12 06:36:49 mcalabre Exp $
#-----------------------------------------------------------------------------
# Get configure settings.
SUBDIR := C
include ../makedefs
FLEXMODS := $(patsubst %.l,%.c,$(wildcard *.l))
MODULES := $(sort \
$(patsubst %.c,%.o, \
$(filter-out getwcstab.c,$(wildcard *.c)) $(FLEXMODS)))
ifeq "$(WCSTRIG)" "MACRO"
CPPFLAGS += -DWCSTRIG_MACRO
MODULES := $(filter-out wcstrig.o, $(MODULES))
else
ifeq "$(WCSTRIG)" "NATIVE"
MODULES := $(filter-out wcstrig.o, $(MODULES))
endif
endif
LIBLOCK := lib.lock
# For building the sharable library.
PICLIB := libwcs-PIC.a
CPPFLAGS += -I. -I..
vpath %.c test
vpath %.h ..
vpath %.in ..
# For building and exercising the test suite
# ------------------------------------------
# Test programs that don't require CFITSIO or PGPLOT...
TEST_N := tlin tdis1 tdis2 tlog tprj1 tsph tsphdpa tspx ttab1 twcs twcssub \
tpih1 tbth1 tfitshdr tunits twcsfix twcscompare
# ...and unofficial test programs.
TEST_n := tdisiter tspcaips tspcspxe tspctrne twcs_locale
# Test programs that require CFITSIO (they don't need PGPLOT).
TEST_C := twcstab twcshdr tdis3 twcslint
# Test programs that require PGPLOT but not PGSBOX.
TEST_P := tspc tprj2 tcel1 tcel2 ttab2 ttab3 twcsmix
# Test programs that require PGSBOX (and therefore PGPLOT).
TEST_B := tpih2
# Test program for POSIX threads (code development only).
TEST_T := tpthreads
# Test programs that are compiled but not automatically exercised.
TEST_X := tsphdpa twcshdr
TESTS := $(TEST_N)
# Do we have CFITSIO?
DO_CFITSIO := 1
ifeq "$(CFITSIOINC)" ""
DO_CFITSIO := 0
else ifeq "$(CFITSIOLIB)" ""
DO_CFITSIO := 0
endif
ifeq "$(DO_CFITSIO)" "1"
# Yes, add test programs that use it.
TESTS += $(TEST_C)
CFITSIO_CFLAGS := $(filter-out -Wpadded,$(CFLAGS))
else
# No, amend TEST_X.
TEST_X := $(filter-out $(TEST_C),$(TEST_X))
endif
# Do we have PGPLOT?
DO_PGPLOT := 0
ifneq "$(CHECK)" "nopgplot"
DO_PGPLOT := 1
ifeq "$(PGPLOTINC)" ""
DO_PGPLOT := 0
else ifeq "$(PGPLOTLIB)" ""
DO_PGPLOT := 0
endif
ifeq "$(DO_PGPLOT)" "1"
# Yes, add test programs that use it.
TESTS += $(TEST_P) $(TEST_B)
else
# No, amend TEST_X.
TEST_X := $(filter-out $(TEST_P) $(TEST_B),$(TEST_X))
endif
endif
# Remove tests that aren't automatically exercised.
TESTS := $(filter-out $(TEST_X), $(TESTS))
PGSBOXLIB := ../pgsbox/libpgsbox-$(LIBVER).a
ADDRE := 0x[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]*
# Pattern rules
#--------------
ifeq "$(FLEX)" "flex"
%.c : %.l
-@ echo ''
-@ $(RM) $@
$(FLEX) $(FLFLAGS) -t $< | sed -e 's/^[ ]*#/#/' > $@
else
%.c : %.l
-@ echo ''
-@ $(RM) $@
cp flexed/$@ .
endif
$(WCSLIB)(%.o) : %.c
-@ echo ''
$(CC) $(CPPFLAGS) $(CFLAGS) -c $<
@ if [ ! -f $(LIBLOCK) ] ; then \
echo $(AR) r$(ARFLAGS) $(WCSLIB) $% ; \
$(AR) r$(ARFLAGS) $(WCSLIB) $% ; \
$(RM) $% ; \
fi
$(PICLIB)(%.o) : $(WCSLIB)(%.o)
-@ echo ''
$(CC) $(CPPFLAGS) $(CFLAGS) $(SHRFLAGS) -c $(%:.o=.c)
@ if [ ! -f $(LIBLOCK) ] ; then \
echo $(AR) r$(ARFLAGS) $(PICLIB) $% ; \
$(AR) r$(ARFLAGS) $(PICLIB) $% ; \
$(RM) $% ; \
fi
# May need to create temporary symlinks to include file directories for
# CFITSIO, etc. for the following two rules.
%.i : %.c
-@ echo ''
-@ $(RM) $@
$(CPP) $(CPPFLAGS) $(CFLAGS) $< > $@
# Print out include file dependencies.
%.d : %.c
-@ echo ''
-@ $(CPP) $(CPPFLAGS) $(CFLAGS) $< | \
sed -n -e 's|^# 1 "\([^/].*\.h\)".*|\1|p' | \
sed -e 's|.*/||' | \
sort -u
%.fits : test/%.keyrec ../utils/tofits
../utils/tofits < $< > $@
# Use 'make VALGRIND=T run_%' to have VALGRIND defined (from flavours).
# Use 'make VALGRIND=T check < /dev/null |& tee check_valgrind.log' to run
# valgrind on the lot.
run_% : %
-@ echo ''
-@ $(TIMER)
@ if [ '$(MODE)' = interactive -o '$(VALGRIND)' ] ; then \
printf 'Press <CR> to run $<: ' ; \
read DUMMY ; \
fi ; \
if [ '$(VALGRIND)' ] ; then \
if [ '$<' = tunits ] ; then \
$(VALGRIND) ./$< < test/units_test ; \
else \
$(VALGRIND) ./$< ; \
fi ; \
else \
if [ '$(filter $<, $(TEST_N) $(TEST_C))' ] ; then \
if [ '$<' = tunits ] ; then \
if [ '$(MODE)' = interactive ] ; then \
./$< < test/units_test 2>&1 | tee $<.out ; \
else \
./$< < test/units_test > $<.out 2>&1 ; \
fi ; \
else \
if [ '$(MODE)' = interactive ] ; then \
./$< < /dev/null 2>&1 | tee $<.out ; \
else \
./$< < /dev/null > $<.out 2>&1 ; \
fi ; \
fi ; \
if grep 'FAIL:' $<.out > /dev/null ; then \
if [ '$(MODE)' != interactive ] ; then \
head -2 $<.out ; \
grep 'FAIL:' $<.out ; \
fi ; \
echo 'FAIL: C/$<' >> test_results ; \
elif grep 'PASS:' $<.out > /dev/null ; then \
if [ '$(MODE)' != interactive ] ; then \
head -2 $<.out ; \
grep 'PASS:' $<.out ; \
fi ; \
echo 'PASS: C/$<' >> test_results ; \
elif [ -f 'test/$<.out' ] ; then \
trap 'rm -f run_$<.tmp' 0 1 2 3 15 ; \
sed -e 's/$(ADDRE)/0x<address>/g' $<.out > \
run_$<.tmp ; \
mv -f run_$<.tmp $<.out ; \
if cmp -s $<.out test/$<.out ; then \
if [ '$(MODE)' != interactive ] ; then \
head -2 $<.out ; \
fi ; \
echo 'PASS: Output agrees with C/test/$<.out' ; \
echo 'PASS: C/$<' >> test_results ; \
else \
if [ '$(MODE)' != interactive ] ; then \
cat $<.out ; \
fi ; \
echo '' ; \
echo 'FAIL: Output disagrees with C/test/$<.out' ; \
echo 'FAIL: C/$<' >> test_results ; \
fi ; \
elif [ '$(MODE)' != interactive ] ; then \
cat $<.out ; \
echo 'FAIL: C/$<' >> test_results ; \
fi ; \
elif [ '$(MODE)' = interactive ] ; then \
./$< ; \
else \
if [ '$<' = tcel2 ] ; then \
echo N | ./$< ; \
else \
./$< < /dev/null 2>&1 ; \
fi ; \
fi ; \
fi
-@ echo ''
# Static and static pattern rules
#--------------------------------
.PHONY : build check clean cleaner cleanest distclean install lib realclean \
run_% test tests uninstall
build : lib
lib : $(FLEXMODS)
-@ echo ''
-@ echo 'Building WCSLIB C library...'
@ $(MAKE) --no-print-directory $(WCSLIB)
$(WCSLIB) : $(LIBLOCK) $(MODULES:%=$(WCSLIB)(%))
-@ echo ''
@ set *.o ; \
if [ "$$1" != "*.o" ] ; then \
echo $(AR) r$(ARFLAGS) $@ *.o ; \
$(AR) r$(ARFLAGS) $@ *.o ; \
echo $(RANLIB) $@ ; \
$(RANLIB) $@ ; \
$(RM) *.o ; \
fi
-@ $(RM) $<
@ if [ "$(SHRLIB)" != "" ] ; then \
$(MAKE) --no-print-directory $(SHRLIB) ; \
fi
$(SHRLIB) : $(PICLIB)
-@ echo ''
-@ $(RM) -r tmp
mkdir tmp && \
cd tmp && \
trap 'cd .. ; $(RM) -r tmp' 0 1 2 3 15 ; \
$(AR) x ../$(PICLIB) && \
$(SHRLD) -o $@ *.o $(LDFLAGS) $(LIBS) && \
mv $@ .. && \
ln -sf $@ ../$(SONAME) && \
ln -sf $(SONAME) ../$(SHRLN)
$(PICLIB) : $(LIBLOCK) $(MODULES:%=$(PICLIB)(%))
-@ echo ''
@ set *.o ; \
if [ "$$1" != "*.o" ] ; then \
echo $(AR) r$(ARFLAGS) $@ *.o ; \
$(AR) r$(ARFLAGS) $@ *.o ; \
$(RM) *.o ; \
fi
-@ $(RM) $<
$(LIBLOCK) : FORCE
@ $(RM) *.o
@ touch $@
install : build
- if [ ! -d "$(LIBDIR)" ] ; then \
$(INSTALL) -d -m 775 $(LIBDIR) ; \
fi
if [ "$(ARFLAGS)" = U ] ; then \
$(RM) -r tmp ; \
mkdir tmp && \
cd tmp && \
trap 'cd .. ; $(RM) -r tmp' 0 1 2 3 15 ; \
$(AR) x ../$(WCSLIB) && \
$(AR) rD $(WCSLIB) *.o && \
$(INSTALL) -m 644 $(WCSLIB) $(LIBDIR) ; \
cd .. ; \
$(RM) -r tmp ; \
else \
$(INSTALL) -m 644 $(WCSLIB) $(LIBDIR) ; \
fi
$(RANLIB) $(LIBDIR)/$(WCSLIB)
- if [ -h "$(LIBDIR)/libwcs.a" ] ; then \
$(RM) $(LIBDIR)/libwcs.a ; \
fi
$(LN_S) $(WCSLIB) $(LIBDIR)/libwcs.a
if [ "$(SHRLIB)" != "" ] ; then \
$(INSTALL) -m 755 $(SHRLIB) $(LIBDIR) ; \
if [ -h "$(LIBDIR)/$(SONAME)" ] ; then \
$(RM) $(LIBDIR)/$(SONAME) ; \
fi ; \
$(LN_S) $(SHRLIB) $(LIBDIR)/$(SONAME) ; \
if [ "$(SHRLN)" != "" ] ; then \
if [ -h "$(LIBDIR)/$(SHRLN)" ] ; then \
$(RM) $(LIBDIR)/$(SHRLN) ; \
fi ; \
$(LN_S) $(SONAME) $(LIBDIR)/$(SHRLN) ; \
fi ; \
fi
- if [ ! -d "$(INCDIR)" ] ; then \
$(INSTALL) -d -m 775 $(INCDIR) ; \
fi
$(INSTALL) -m 444 *.h $(INCDIR)
- $(RM) $(INCLINK)
$(LN_S) $(notdir $(INCDIR)) $(INCLINK)
uninstall :
- cd $(LIBDIR) && $(RM) $(WCSLIB) $(SHRLN) $(SONAME) $(SHRLIB)
- $(RM) $(INCDIR)
- $(RM) $(INCLINK)
clean :
- $(RM) *.o $(LIBLOCK) *.i a.out t*.out core *.dSYM
- $(RM) -r $(EXTRA_CLEAN)
cleaner : clean
- $(RM) .gdb_history
- $(RM) $(TEST_N) $(TEST_n) $(TEST_T) $(TEST_X)
- $(RM) $(TEST_P) tdis3 tpih2 twcshdr twcslint twcstab
- $(RM) bth.fits fitshdr.fits pih.fits wcslint.fits wcspcx.fits
- $(RM) wcstab.fits SIP.fits SIPTPV.fits TPV3.fits TPV5.fits
- $(RM) TPV7.fits DSS.fits TNX.fits ZPX.fits
- $(RM) t*_cfitsio test_results
cleanest distclean realclean : cleaner
- $(RM) ../wcsconfig.h ../wcsconfig_tests.h
- $(RM) fitshdr.c wcsbth.c wcspih.c wcsulex.c wcsutrn.c
- $(RM) $(PICLIB) libwcs-*.a libwcs.so.* libwcs.*.dylib
check test : tests $(TESTS:%=run_%)
tests : $(TESTS) $(TEST_X)
# TEST_N and TEST_n programs (no special libraries required).
$(TEST_N) $(TEST_n) : % : test/%.c $(WCSLIB)
-@ echo ''
$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< $(LDFLAGS) $(WCSLIB) $(LIBS)
-@ $(RM) $@.o
# TEST_N programs (optionally using CFITSIO).
tpih1_cfitsio tbth1_cfitsio tfitshdr_cfitsio : %_cfitsio : test/%.c $(WCSLIB)
-@ echo ''
$(CC) -DDO_CFITSIO $(CPPFLAGS) $(CFITSIOINC) $(CFITSIO_CFLAGS) \
-o $@ $< $(LDFLAGS) $(CFITSIOLIB) $(WCSLIB) $(LIBS)
-@ $(RM) $@.o
# TEST_C programs (using CFITSIO).
twcstab : test/twcstab.c $(WCSLIB) $(GETWCSTAB)
-@ echo ''
$(CC) $(CPPFLAGS) $(CFITSIOINC) $(CFITSIO_CFLAGS) -o $@ $< \
$(GETWCSTAB) $(LDFLAGS) $(CFITSIOLIB) $(WCSLIB) $(LIBS)
-@ $(RM) $@.o $(GETWCSTAB)
twcshdr : test/twcshdr.c $(WCSLIB) $(GETWCSTAB)
-@ echo ''
$(CC) $(CPPFLAGS) $(CFITSIOINC) $(CFITSIO_CFLAGS) -o $@ $< \
$(GETWCSTAB) $(LDFLAGS) $(CFITSIOLIB) $(WCSLIB) $(LIBS)
-@ $(RM) $@.o $(GETWCSTAB)
tdis3 : test/tdis3
-@ echo ''
cp $< .
-@ chmod a+x $@
twcslint : test/twcslint
-@ echo ''
cp $< .
-@ chmod a+x $@
# TEST_P programs (using PGPLOT).
$(TEST_P) : % : test/%.c $(WCSLIB)
-@ echo ''
$(CC) $(CPPFLAGS) $(PGPLOTINC) $(CFLAGS) -c -o $@.o $<
$(LD) -o $@ $@.o $(LDFLAGS) $(CPGPLOTLIB) $(WCSLIB) $(FLIBS) $(LIBS)
-@ $(RM) $@.o
# TEST_B programs (PGSBOX and PGPLOT).
tpih2 : test/tpih2.c $(PGSBOXLIB) $(WCSLIB)
-@ echo ''
$(CC) $(CPPFLAGS) -I../pgsbox $(PGPLOTINC) $(CFLAGS) -c -o $@.o $<
$(LD) -o $@ $@.o $(LDFLAGS) $(PGSBOXLIB) $(PGPLOTLIB) $(CPGPLOTLIB) $(WCSLIB) \
$(FLIBS) $(LIBS)
-@ $(RM) $@.o
tpih2_cfitsio : test/tpih2.c $(PGSBOXLIB) $(WCSLIB)
-@ echo ''
$(CC) -DDO_CFITSIO $(CPPFLAGS) -I../pgsbox $(PGPLOTINC) \
$(CFITSIOINC) $(CFITSIO_CFLAGS) -c -o $@.o $<
$(LD) -o $@ $@.o $(LDFLAGS) $(PGSBOXLIB) $(PGPLOTLIB) $(CPGPLOTLIB) \
$(CFITSIOLIB) $(WCSLIB) $(FLIBS) $(LIBS)
-@ $(RM) $@.o
# TEST_T programs (using POSIX threads).
tpthreads : test/tpthreads.c $(WCSLIB)
-@ echo ''
$(CC) $(CPPFLAGS) $(CFLAGS) -pthread -c -o $@.o $<
$(LD) -o $@ $@.o $(LDFLAGS) -pthread $(WCSLIB) -lpthread $(LIBS)
-@ $(RM) $@.o
getwcstab.o : getwcstab.c getwcstab.h
-@ echo ''
$(CC) $(CPPFLAGS) $(CFITSIO_CFLAGS) $(CFITSIOINC) -c $<
$(PGSBOXLIB) :
-@ echo ''
$(MAKE) -C ../pgsbox $(notdir $@)
../utils/tofits : ../utils/tofits.c
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $<
GNUmakefile : ../makedefs ;
../makedefs ../wcsconfig.h ../wcsconfig_tests.h : makedefs.in wcsconfig.h.in \
wcsconfig_tests.h.in ../config.status
-@ $(RM) ../wcsconfig.h ../wcsconfig_tests.h
cd .. && ./config.status
show ::
-@ echo ' FLEXMODS := $(FLEXMODS)'
-@ echo ' MODULES := $(MODULES)'
-@ echo ' DO_CFITSIO := $(DO_CFITSIO)'
-@ echo ' DO_PGPLOT := $(DO_PGPLOT)'
-@ echo ' TESTS := $(TESTS)'
-@ echo ' TEST_X := $(TEST_X)'
# Dependencies (use the %.d pattern rule to list them)
#-----------------------------------------------------
$(WCSLIB)(cel.o) : cel.h prj.h sph.h wcsconfig.h wcserr.h wcsmath.h \
wcsprintf.h wcstrig.h
$(WCSLIB)(dis.o) : dis.h wcserr.h wcsprintf.h wcsutil.h
$(WCSLIB)(fitshdr.o) : fitshdr.h wcsconfig.h wcsutil.h
$(WCSLIB)(lin.o) : dis.h lin.h wcserr.h wcsprintf.h
$(WCSLIB)(log.o) : log.h
$(WCSLIB)(prj.o) : prj.h wcsconfig.h wcserr.h wcsmath.h wcsprintf.h \
wcstrig.h wcsutil.h
$(WCSLIB)(spc.o) : spc.h spx.h wcsconfig.h wcserr.h wcsmath.h \
wcsprintf.h wcstrig.h wcsutil.h
$(WCSLIB)(sph.o) : sph.h wcsconfig.h wcstrig.h
$(WCSLIB)(spx.o) : spx.h wcserr.h wcsmath.h
$(WCSLIB)(tab.o) : tab.h wcserr.h wcsmath.h wcsprintf.h wcsutil.h
$(WCSLIB)(wcs.o) : cel.h dis.h lin.h log.h prj.h spc.h sph.h spx.h \
tab.h wcs.h wcsconfig.h wcserr.h wcsmath.h \
wcsprintf.h wcstrig.h wcsunits.h wcsutil.h
$(WCSLIB)(wcsbth.o) : cel.h lin.h prj.h spc.h spx.h wcs.h wcshdr.h \
wcsmath.h wcsprintf.h wcsutil.h
$(WCSLIB)(wcserr.o) : wcserr.h wcsprintf.h
$(WCSLIB)(wcsfix.o) : cel.h lin.h prj.h spc.h sph.h spx.h wcs.h wcserr.h \
wcsfix.h wcsmath.h wcsunits.h wcsutil.h
$(WCSLIB)(wcshdr.o) : cel.h dis.h lin.h prj.h spc.h spx.h tab.h wcs.h \
wcserr.h wcshdr.h wcsmath.h wcsutil.h
$(WCSLIB)(wcspih.o) : cel.h dis.h lin.h prj.h spc.h spx.h wcs.h wcshdr.h \
wcsmath.h wcsprintf.h wcsutil.h
$(WCSLIB)(wcsprintf.o): wcsprintf.h
$(WCSLIB)(wcstrig.o) : wcsconfig.h wcsmath.h wcstrig.h
$(WCSLIB)(wcsulex.o) : wcserr.h wcsmath.h wcsunits.h wcsutil.h
$(WCSLIB)(wcsunits.o) : wcserr.h wcsunits.h
$(WCSLIB)(wcsutil.o) : wcsmath.h wcsutil.h
$(WCSLIB)(wcsutrn.o) : wcserr.h wcsunits.h
tbth1 tbth1_cfitsio : cel.h lin.h prj.h spc.h spx.h wcs.h wcsconfig.h \
wcsconfig_tests.h wcserr.h wcsfix.h wcshdr.h
tcel1 : cel.h prj.h
tcel2 : cel.h prj.h
tfitshdr tfitshdr_cfitsio : cel.h fitshdr.h lin.h prj.h spc.h spx.h wcs.h \
wcsconfig.h wcsconfig_tests.h wcshdr.h
tlin : lin.h
tdis1 : cel.h dis.h lin.h prj.h spc.h spx.h wcs.h wcserr.h wcshdr.h \
wcsprintf.h
tdis2 : cel.h lin.h prj.h spc.h spx.h wcs.h wcserr.h wcshdr.h wcsprintf.h
tdisiter: cel.h dis.h lin.h prj.h spc.h spx.h wcs.h wcserr.h wcshdr.h \
wcsprintf.h
tlog : log.h
tpih1 tpih1_cfitsio : cel.h lin.h prj.h spc.h spx.h wcs.h wcsconfig.h \
wcsconfig_tests.h wcserr.h wcsfix.h wcshdr.h wcsprintf.h
tpih2 tpih2_cfitsio : cel.h lin.h prj.h spc.h spx.h wcs.h wcsconfig.h \
wcsconfig_tests.h wcshdr.h
tprj1 : prj.h wcsconfig.h wcstrig.h
tprj2 : prj.h
tspc : spc.h spx.h wcsconfig.h wcstrig.h
tspcaips: spc.h spx.h
tspctrne: spc.h spx.h wcserr.h
tsph : sph.h wcsconfig.h wcstrig.h
tsphdpa : sph.h
tspx : spx.h
ttab1 : tab.h
ttab2 : tab.h
ttab3 : prj.h tab.h
tunits : wcserr.h wcsunits.h
twcs : cel.h dis.h fitshdr.h lin.h log.h prj.h spc.h sph.h spx.h tab.h \
wcs.h wcsconfig.h wcsconfig_tests.h wcserr.h wcsfix.h wcshdr.h \
wcslib.h wcsmath.h wcsprintf.h wcstrig.h wcsunits.h wcsutil.h
twcs_locale : cel.h lin.h prj.h spc.h spx.h wcs.h wcserr.h wcshdr.h \
wcsprintf.h
twcsfix : cel.h lin.h prj.h spc.h spx.h wcs.h wcserr.h wcsfix.h \
wcsprintf.h wcsunits.h
twcshdr : cel.h dis.h fitshdr.h getwcstab.h lin.h log.h prj.h spc.h sph.h \
spx.h tab.h wcs.h wcsconfig.h wcserr.h wcsfix.h wcshdr.h wcslib.h \
wcsmath.h wcsprintf.h wcstrig.h wcsunits.h wcsutil.h
twcsmix : cel.h lin.h prj.h spc.h sph.h spx.h wcs.h
twcssub : cel.h lin.h prj.h spc.h spx.h wcs.h wcserr.h
twcstab : cel.h dis.h fitshdr.h getwcstab.h lin.h log.h prj.h spc.h sph.h \
spx.h tab.h wcs.h wcsconfig.h wcserr.h wcsfix.h wcshdr.h wcslib.h \
wcsmath.h wcsprintf.h wcstrig.h wcsunits.h wcsutil.h
run_tdis1 : TPV3.fits TPV5.fits TPV7.fits
run_tdis2 : SIP.fits
run_tdis3 : DSS.fits SIPTPV.fits TNX.fits ZPX.fits
run_tbth1 run_tbth1_cfitsio : bth.fits
run_tfitshdr run_tfitshdr_cfitsio : fitshdr.fits
run_tpih1 run_tpih1_cfitsio : pih.fits
run_tpih2 run_tpih2_cfitsio : pih.fits
run_twcslint : wcslint.fits
run_twcs_locale : pih.fits
|