Changeset 8964
- Timestamp:
- Sep 25, 2006, 3:37:23 PM (20 years ago)
- Location:
- trunk/psLib
- Files:
-
- 3 edited
-
Doxyfile.in (modified) (4 diffs)
-
Makefile.am (modified) (1 diff)
-
configure.ac (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/Doxyfile.in
r3589 r8964 18 18 # by quotes) that should identify the project. 19 19 20 PROJECT_NAME = "Pan-STARRS Foundation Library"20 PROJECT_NAME = @PACKAGE_NAME@ 21 21 22 22 # The PROJECT_NUMBER tag can be used to enter a project or revision number. … … 31 31 # where doxygen was started. If left blank the current directory will be used. 32 32 33 OUTPUT_DIRECTORY = @prefix@/docs/pslib 33 # @top_builddir@ doesn't work for some reason 34 OUTPUT_DIRECTORY = @builddir@/docs 34 35 35 36 # The OUTPUT_LANGUAGE tag is used to specify the language in which all … … 362 363 # with spaces. 363 364 364 INPUT = src365 INPUT = @top_srcdir@/src 365 366 366 367 # If the value of the INPUT tag contains directories, you can use the … … 934 935 # interpreter (i.e. the result of `which perl'). 935 936 936 PERL_PATH = /usr/bin/perl937 PERL_PATH = @PERL@ 937 938 938 939 #--------------------------------------------------------------------------- -
trunk/psLib/Makefile.am
r8906 r8964 9 9 pslib-config.in \ 10 10 pslib.pc.in \ 11 autogen.sh 11 autogen.sh 12 12 13 13 if DOXYGEN 14 docs: Doxyfile $(prefix)/docs/pslib $(mandir)/man3 15 doxygen Doxyfile 16 mv -f $(prefix)/docs/pslib/man/man3/* $(mandir)/man3 17 rm -rf $(prefix)/docs/pslib/man 14 install-data-hook: doxygen 15 -$(mkdir_p) $(mandir)/man3 16 chmod 0755 $(mandir)/man3 17 -cp $(top_builddir)/docs/man/man3/* $(mandir)/man3 18 19 doxygen: 20 $(DOXYGEN) 18 21 endif 19 22 20 $(prefix)/docs/pslib: 21 mkdir -p -m 744 $(prefix)/docs/pslib 23 CLEANFILES = *~ *.bb *.bbg *.da DoxygenLog 22 24 23 $(mandir)/man3: 24 mkdir -p -m 744 $(mandir)/man3 25 26 CLEANFILES = $(prefix)/docs/pslib/* *~ *.bb *.bbg *.da 25 clean-local: 26 -rm -rf docs 27 27 28 28 test: check 29 30 distuninstallcheck_listfiles = \31 `find . -name .packlist -or -name perllocal.pod -or -name pslib.bs -or -name pslib.so -or -name pslib.pm`32 33 distuninstallcheck:34 @: -
trunk/psLib/configure.ac
r8925 r8964 373 373 [AC_MSG_ERROR([The C99 function, atoll, is required; update your compiler version?])]) 374 374 375 AC_CHECK_PROG(doxygen,[doxygen],[true],[false]) 376 AM_CONDITIONAL(DOXYGEN, test x$doxygen = xtrue) 377 375 AC_PATH_PROG([DOXYGEN], [doxygen], [missing]) 376 AM_CONDITIONAL([DOXYGEN], test "x$doxygen" != "xmissing") 378 377 379 378 dnl ------- restore CFLAGS / LDFLAGS (tests done) --------
Note:
See TracChangeset
for help on using the changeset viewer.
