diff options
author | Edward Hervey <bilboed@bilboed.com> | 2005-04-04 17:17:24 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2005-04-04 17:17:24 +0000 |
commit | 8ee1c1c9c234c20003b14b006d446321ce4fa275 (patch) | |
tree | aa1d2cd477f6b3d1a0d59a84ded45823a10d1a4c /docs | |
parent | facf5e271ce0004cf819b1c755d88c46385d2156 (diff) |
test/: updated to new api
Original commit message from CVS:
* test/sourcetest2.c:
* test/pipelines.c:
updated to new api
* test/Makefile.am: commenting out extra tests
* gnl/gnlobject.c: (gnl_object_covers):
added gtk-doc comment
* docs/libs/Makefile.am: corrections for distcheck
Diffstat (limited to 'docs')
-rw-r--r-- | docs/libs/Makefile.am | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/docs/libs/Makefile.am b/docs/libs/Makefile.am index abbe5f9..16152e6 100644 --- a/docs/libs/Makefile.am +++ b/docs/libs/Makefile.am @@ -80,7 +80,7 @@ GTKDOC_LD=$(LIBTOOL) --mode=link $(CC) # If you need to override some of the declarations, place them in this file # and uncomment this line. -#DOC_OVERRIDES = $(DOC_MODULE)-overrides.txt +DOC_OVERRIDES = $(DOC_MODULE)-overrides.txt @@ -238,6 +238,7 @@ distclean-local: clean rm -rf $(DOC_MODULE)-decl.txt rm -rf $(DOC_MODULE)-undocumented.txt rm -rf $(DOC_MODULE)-unused.txt + rm -rf $(DOC_MODULE)-overrides.txt rm -rf tmpl/*.sgml.bak rm -f $(DOC_MODULE).hierarchy rm -f *.stamp || true @@ -269,11 +270,11 @@ install-data-local: $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \ done; \ fi; \ - echo '-- Installing $(srcdir)/html/$(DOC_MODULE).devhelp' ; \ - $(INSTALL_DATA) $(srcdir)/html/$(DOC_MODULE).devhelp \ + echo '-- Installing ./html/$(DOC_MODULE).devhelp' ; \ + $(INSTALL_DATA) ./html/$(DOC_MODULE).devhelp \ $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE).devhelp; \ - echo '-- Installing $(srcdir)/html/index.sgml' ; \ - $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \ + echo '-- Installing ./html/index.sgml' ; \ + $(INSTALL_DATA) ./html/index.sgml $(DESTDIR)$(TARGET_DIR); \ fi) uninstall-local: (installfiles=`echo ./html/*.html`; \ @@ -298,7 +299,7 @@ uninstall-local: echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/index.sgml' ; \ rm -f $(DESTDIR)$(TARGET_DIR)/index.sgml; \ fi) - if test -d $(DESTDIR)$(TARGET_DIR); then rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(TARGET_DIR) 2>/dev/null; fi +# if test -d $(DESTDIR)$(TARGET_DIR); then rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(TARGET_DIR) 2>/dev/null; fi # # Require gtk-doc when making dist |