Changeset 7210
- Timestamp:
- May 25, 2006, 11:12:54 AM (20 years ago)
- Location:
- trunk/psLib
- Files:
-
- 25 edited
-
Makefile.am (modified) (1 diff)
-
src/Makefile.am (modified) (1 diff)
-
src/astro/Makefile.am (modified) (2 diffs)
-
src/db/Makefile.am (modified) (1 diff)
-
src/fft/Makefile.am (modified) (1 diff)
-
src/fits/Makefile.am (modified) (1 diff)
-
src/imageops/Makefile.am (modified) (1 diff)
-
src/math/Makefile.am (modified) (1 diff)
-
src/mathtypes/Makefile.am (modified) (1 diff)
-
src/sys/Makefile.am (modified) (1 diff)
-
src/types/Makefile.am (modified) (1 diff)
-
src/xml/Makefile.am (modified) (1 diff)
-
test/Makefile.am (modified) (1 diff)
-
test/astro/Makefile.am (modified) (1 diff)
-
test/db/Makefile.am (modified) (1 diff)
-
test/fft/Makefile.am (modified) (1 diff)
-
test/fits/Makefile.am (modified) (1 diff)
-
test/imageops/Makefile.am (modified) (1 diff)
-
test/math/Makefile.am (modified) (1 diff)
-
test/mathtypes/Makefile.am (modified) (1 diff)
-
test/sys (modified) (1 prop)
-
test/sys/.cvsignore (modified) (1 diff)
-
test/sys/Makefile.am (modified) (1 diff)
-
test/types/Makefile.am (modified) (1 diff)
-
test/xml/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/Makefile.am
r6796 r7210 49 49 rm -rf $(prefix)/docs/pslib/* 50 50 51 CLEANFILES = $(prefix)/docs/pslib/* 51 CLEANFILES = $(prefix)/docs/pslib/* *~ 52 52 53 53 test: check -
trunk/psLib/src/Makefile.am
r6798 r7210 28 28 cp libpslib.la.temp libpslib.la 29 29 rm -f libpslib.la.temp 30 31 CLEANFILES = *~ -
trunk/psLib/src/astro/Makefile.am
r5235 r7210 10 10 psCoord.c \ 11 11 psSphereOps.c \ 12 psEarthOrientation.c12 psEarthOrientation.c 13 13 14 14 EXTRA_DIST = astro.i … … 19 19 psCoord.h \ 20 20 psSphereOps.h \ 21 psEarthOrientation.h 21 psEarthOrientation.h 22 23 CLEANFILES = *~ -
trunk/psLib/src/db/Makefile.am
r6953 r7210 14 14 psDB_dummy.h 15 15 16 CLEANFILES = *~ -
trunk/psLib/src/fft/Makefile.am
r4981 r7210 15 15 psImageFFT.h 16 16 17 CLEANFILES = *~ -
trunk/psLib/src/fits/Makefile.am
r5511 r7210 18 18 psFitsImage.h \ 19 19 psFitsTable.h 20 21 CLEANFILES = *~ -
trunk/psLib/src/imageops/Makefile.am
r5227 r7210 24 24 psImageStructManip.h \ 25 25 psImageMaskOps.h 26 27 CLEANFILES = *~ -
trunk/psLib/src/math/Makefile.am
r6874 r7210 39 39 psStats.h \ 40 40 psMathUtils.h 41 42 CLEANFILES = *~ -
trunk/psLib/src/mathtypes/Makefile.am
r4981 r7210 16 16 psScalar.h \ 17 17 psVector.h 18 19 CLEANFILES = *~ -
trunk/psLib/src/sys/Makefile.am
r5302 r7210 37 37 psTrace.h \ 38 38 psType.h 39 40 CLEANFILES = *~ -
trunk/psLib/src/types/Makefile.am
r6187 r7210 28 28 psPixels.h \ 29 29 psArguments.h 30 31 CLEANFILES = *~ -
trunk/psLib/src/xml/Makefile.am
r4981 r7210 12 12 pslibinclude_HEADERS = \ 13 13 psXML.h 14 15 CLEANFILES = *~ -
trunk/psLib/test/Makefile.am
r7092 r7210 3 3 EXTRA_DIST = runTest FullUnitTest 4 4 5 CLEANFILES = core core.* 5 CLEANFILES = core core.* *~ 6 6 7 7 all: -
trunk/psLib/test/astro/Makefile.am
r7093 r7210 43 43 tests: $(check_DATA) $(TESTS) 44 44 45 CLEANFILES = $(TESTS) $(check_DATA) temp/* core core.* 45 CLEANFILES = $(TESTS) $(check_DATA) temp/* core core.* *~ 46 46 47 47 pslib.config: $(top_srcdir)/etc/pslib/pslib.config.template -
trunk/psLib/test/db/Makefile.am
r7093 r7210 18 18 EXTRA_DIST = verified 19 19 20 CLEANFILES = $(TESTS) $(check_DATA) temp/* core core.* 20 CLEANFILES = $(TESTS) $(check_DATA) temp/* core core.* *~ 21 21 22 22 clean-local: -
trunk/psLib/test/fft/Makefile.am
r7093 r7210 19 19 EXTRA_DIST = verified 20 20 21 CLEANFILES = $(TESTS) $(check_DATA) temp/* core core.* 21 CLEANFILES = $(TESTS) $(check_DATA) temp/* core core.* *~ 22 22 23 23 tests: $(TESTS) $(check_DATA) -
trunk/psLib/test/fits/Makefile.am
r7093 r7210 17 17 EXTRA_DIST = verified 18 18 19 CLEANFILES = $(TESTS) $(check_DATA) temp/* multi.fits table.fits tmpImages/* core core.* 19 CLEANFILES = $(TESTS) $(check_DATA) temp/* multi.fits table.fits tmpImages/* core core.* *~ 20 20 21 21 tests: $(check_DATA) $(TESTS) -
trunk/psLib/test/imageops/Makefile.am
r7093 r7210 33 33 EXTRA_DIST = verified 34 34 35 CLEANFILES = $(TESTS) $(check_DATA) temp/* fOut.fits sOut.fits fBiOut.fits sBiOut.fits core core.* 35 CLEANFILES = $(TESTS) $(check_DATA) temp/* fOut.fits sOut.fits fBiOut.fits sBiOut.fits core core.* *~ 36 36 37 37 tests: $(TESTS) $(check_DATA) -
trunk/psLib/test/math/Makefile.am
r7093 r7210 86 86 TESTS_ENVIRONMENT = perl $(top_srcdir)/test/runTest -verified=$(srcdir)/verified 87 87 EXTRA_DIST = verified 88 CLEANFILES = $(TESTS) $(check_DATA) temp/* seed_msglog1.txt core core.* 88 CLEANFILES = $(TESTS) $(check_DATA) temp/* seed_msglog1.txt core core.* *~ 89 89 tests: $(check_DATA) $(TESTS) 90 90 test: check -
trunk/psLib/test/mathtypes/Makefile.am
r7093 r7210 29 29 EXTRA_DIST = verified 30 30 31 CLEANFILES = $(TESTS) $(check_DATA) temp/* core core.* 31 CLEANFILES = $(TESTS) $(check_DATA) temp/* core core.* *~ 32 32 33 33 tests: $(check_DATA) $(TESTS) -
trunk/psLib/test/sys
- Property svn:ignore
-
old new 15 15 tst_psTrace02_OUT 16 16 test.fits 17 core 18 core.*
-
- Property svn:ignore
-
trunk/psLib/test/sys/.cvsignore
r5521 r7210 15 15 tst_psTrace02_OUT 16 16 test.fits 17 core 18 core.* -
trunk/psLib/test/sys/Makefile.am
r7093 r7210 29 29 EXTRA_DIST = verified 30 30 31 CLEANFILES = $(TESTS) $(check_DATA) temp/* log.txt log2.txt test.fits tst_psTrace02_OUT core core.* 31 CLEANFILES = $(TESTS) $(check_DATA) temp/* log.txt log2.txt test.fits tst_psTrace02_OUT core core.* *~ 32 32 33 33 tests: $(check_DATA) $(TESTS) -
trunk/psLib/test/types/Makefile.am
r7093 r7210 85 85 86 86 CLEANFILES = $(TESTS) $(check_DATA) multi.fits table.fits temp/* MDCopy.in MDCopy.out mdcfgwrt.out \ 87 core core.* 87 core core.* *~ 88 88 89 89 tests: $(check_DATA) $(TESTS) -
trunk/psLib/test/xml/Makefile.am
r7093 r7210 18 18 19 19 CLEANFILES = $(TESTS) $(check_DATA) temp/* psTest5.xml psTest2.xml psTest.xml psTest3.xml psTest4.xml \ 20 core core.* 20 core core.* *~ 21 21 22 22 tests: $(check_DATA) $(TESTS)
Note:
See TracChangeset
for help on using the changeset viewer.
